@charset "UTF-8"; /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
.application-form {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 40px;
	margin: 40px 0;
}
.form-section {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid #f5f5f5;
}
.form-section:last-child {
	border-bottom: none;
}
.section-title {
	color: #0e0e0e;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 3px solid #d4af37;
	display: inline-block;
}
.form-group {
	margin-bottom: 30px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}
.form-row.full-width {
	grid-template-columns: 1fr;
}
.form-row.three-columns {
	grid-template-columns: 1fr 1fr 1fr;
}
.form-label {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.4;
}
.form-control {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #fafafa;
}
.form-control:focus {
	outline: 0;
	border-color: #d4af37;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-field {
	display: flex;
	flex-direction: column;
}
.form-field label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.4;
}
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #fafafa;
	box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 0;
	border-color: #d4af37;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.file-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #fafafa;
	box-sizing: border-box;
	cursor: pointer;
}
.file-input:focus {
	outline: 0;
	border-color: #d4af37;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.file-input:hover {
	border-color: #d4af37;
	background: #fff;
}
.file-input::file-selector-button {
	background: linear-gradient(135deg, #d4af37 0, #b8941f 100%);
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	margin-right: 12px;
	transition: all 0.3s ease;
}
.file-input::file-selector-button:hover {
	background: linear-gradient(135deg, #b8941f 0, #d4af37 100%);
	transform: translateY(-1px);
}
.form-control.date-input {
	width: calc(33.33% - 10px);
	margin-right: 10px;
}
.form-control.date-input:last-child {
	margin-right: 0;
}
.checkbox-group {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 10px;
}
.checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: #d4af37;
}
.checkbox-item label {
	font-weight: 500;
	color: #555;
	margin: 0;
}
.documents-checklist {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 8px;
	border-left: 4px solid #d4af37;
}
.checklist-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	padding: 8px 0;
}
.checklist-item:last-child {
	margin-bottom: 0;
}
.checklist-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: #d4af37;
}
.checklist-item label {
	font-weight: 500;
	color: #333;
	margin: 0;
}
.declaration-box {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
}
.signature-area {
	border-top: 2px solid #e0e0e0;
	padding-top: 20px;
	margin-top: 20px;
}
.signature-line {
	border-bottom: 2px solid #333;
	height: 40px;
	margin: 10px 0;
}
.declaration-checkbox {
	background: #f8f9fa;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	margin: 15px 0;
	transition: all 0.3s ease;
}
.declaration-checkbox:has(input:checked) {
	border-color: #d4af37;
	background: #fff8e1;
}
.declaration-checkbox .checkbox-item {
	margin: 0;
	padding: 0;
}
.declaration-checkbox .checkbox-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: #d4af37;
	margin-right: 12px;
}
.declaration-checkbox .checkbox-item label {
	font-weight: 500;
	color: #333;
	line-height: 1.5;
	cursor: pointer;
}
.submit-section {
	text-align: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #f5f5f5;
}
.btn-submit {
	background: linear-gradient(135deg, #d4af37 0, #b8941f 100%);
	color: #fff;
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}
.info-note {
	background: #e3f2fd;
	border: 1px solid #bbdefb;
	border-radius: 8px;
	padding: 20px;
	margin: 30px 0;
}
.info-note h4 {
	color: #1976d2;
	margin-bottom: 10px;
	font-size: 18px;
}
.info-note p {
	color: #424242;
	margin-bottom: 8px;
}
.contact-info {
	background: #f1f8e9;
	border: 1px solid #c5e1a5;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
	text-align: center;
}
.contact-info h4 {
	color: #33691e;
	margin-bottom: 10px;
}
.contact-info a {
	color: #d4af37;
	font-weight: 600;
	text-decoration: none;
}
.contact-info a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.application-form {
		padding: 20px;
		margin: 20px 0;
	}
	.form-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.form-row.three-columns {
		grid-template-columns: 1fr;
	}
	.form-control.date-input {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.checkbox-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}
a {
	background-color: transparent;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}
b,
strong {
	font-weight: bolder;
}
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
img {
	border-style: none;
}
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
	-webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
details {
	display: block;
}
summary {
	display: list-item;
}
template {
	display: none;
}
[hidden] {
	display: none;
} /*!
 * Bootstrap v5.0.0-beta2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
	--bs-blue: #0d6efd;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #dc3545;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-primary: #0d6efd;
	--bs-secondary: #6c757d;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #dc3545;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
		"Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.15),
		rgba(255, 255, 255, 0)
	);
}
*,
::after,
::before {
	box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}
body {
	margin: 0;
	font-family: var(--bs-font-sans-serif);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
[tabindex="-1"]:focus:not(:focus-visible) {
	outline: 0 !important;
}
hr {
	margin: 1rem 0;
	color: inherit;
	background-color: currentColor;
	border: 0;
	opacity: 0.25;
}
hr:not([size]) {
	height: 1px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}
.h1,
h1 {
	font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
	.h1,
	h1 {
		font-size: 2.5rem;
	}
}
.h2,
h2 {
	font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
	.h2,
	h2 {
		font-size: 2rem;
	}
}
.h3,
h3 {
	font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
	.h3,
	h3 {
		font-size: 1.75rem;
	}
}
.h4,
h4 {
	font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
	.h4,
	h4 {
		font-size: 1.5rem;
	}
}
.h5,
h5 {
	font-size: 1.25rem;
}
.h6,
h6 {
	font-size: 1rem;
}
p {
	margin-top: 0;
	margin-bottom: 1rem;
}
abbr[data-bs-original-title],
abbr[title] {
	text-decoration: underline;
	text-decoration: underline dotted;
	cursor: help;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}
address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}
ol,
ul {
	padding-left: 2rem;
}
dl,
ol,
ul {
	margin-top: 0;
	margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
	margin-bottom: 0;
}
dt {
	font-weight: 700;
}
dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}
blockquote {
	margin: 0 0 1rem;
}
b,
strong {
	font-weight: bolder;
}
.small,
small {
	font-size: 0.875em;
}
.mark,
mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}
sub,
sup {
	position: relative;
	font-size: 0.75em;
	line-height: 0;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
a {
	color: #0d6efd;
	text-decoration: underline;
}
a:hover {
	color: #0a58ca;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}
code,
kbd,
pre,
samp {
	font-family: var(--bs-font-monospace);
	font-size: 1em;
	direction: ltr;
	unicode-bidi: bidi-override;
}
pre {
	display: block;
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	font-size: 0.875em;
}
pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}
code {
	font-size: 0.875em;
	color: #d63384;
	word-wrap: break-word;
}
a > code {
	color: inherit;
}
kbd {
	padding: 0.2rem 0.4rem;
	font-size: 0.875em;
	color: #fff;
	background-color: #212529;
	border-radius: 0.2rem;
}
kbd kbd {
	padding: 0;
	font-size: 1em;
	font-weight: 700;
}
figure {
	margin: 0 0 1rem;
}
img,
svg {
	vertical-align: middle;
}
table {
	caption-side: bottom;
	border-collapse: collapse;
}
caption {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #6c757d;
	text-align: left;
}
th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
	border-color: inherit;
	border-style: solid;
	border-width: 0;
}
label {
	display: inline-block;
}
button {
	border-radius: 0;
}
button:focus:not(:focus-visible) {
	outline: 0;
}
button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
button,
select {
	text-transform: none;
}
[role="button"] {
	cursor: pointer;
}
select {
	word-wrap: normal;
}
[list]::-webkit-calendar-picker-indicator {
	display: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
	-webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
	cursor: pointer;
}
::-moz-focus-inner {
	padding: 0;
	border-style: none;
}
textarea {
	resize: vertical;
}
fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}
legend {
	float: left;
	width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: calc(1.275rem + 0.3vw);
	line-height: inherit;
}
@media (min-width: 1200px) {
	legend {
		font-size: 1.5rem;
	}
}
legend + * {
	clear: left;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
	padding: 0;
}
::-webkit-inner-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: textfield;
}
::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
	padding: 0;
}
::file-selector-button {
	font: inherit;
}
::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}
output {
	display: inline-block;
}
iframe {
	border: 0;
}
summary {
	display: list-item;
	cursor: pointer;
}
progress {
	vertical-align: baseline;
}
[hidden] {
	display: none !important;
}
.lead {
	font-size: 1.25rem;
	font-weight: 300;
}
.display-1 {
	font-size: calc(1.625rem + 4.5vw);
	font-weight: 300;
	line-height: 1.2;
}
@media (min-width: 1200px) {
	.display-1 {
		font-size: 5rem;
	}
}
.display-2 {
	font-size: calc(1.575rem + 3.9vw);
	font-weight: 300;
	line-height: 1.2;
}
@media (min-width: 1200px) {
	.display-2 {
		font-size: 4.5rem;
	}
}
.display-3 {
	font-size: calc(1.525rem + 3.3vw);
	font-weight: 300;
	line-height: 1.2;
}
@media (min-width: 1200px) {
	.display-3 {
		font-size: 4rem;
	}
}
.display-4 {
	font-size: calc(1.475rem + 2.7vw);
	font-weight: 300;
	line-height: 1.2;
}
@media (min-width: 1200px) {
	.display-4 {
		font-size: 3.5rem;
	}
}
.display-5 {
	font-size: calc(1.425rem + 2.1vw);
	font-weight: 300;
	line-height: 1.2;
}
@media (min-width: 1200px) {
	.display-5 {
		font-size: 3rem;
	}
}
.display-6 {
	font-size: calc(1.375rem + 1.5vw);
	font-weight: 300;
	line-height: 1.2;
}
@media (min-width: 1200px) {
	.display-6 {
		font-size: 2.5rem;
	}
}
.list-unstyled {
	padding-left: 0;
	list-style: none;
}
.list-inline {
	padding-left: 0;
	list-style: none;
}
.list-inline-item {
	display: inline-block;
}
.list-inline-item:not(:last-child) {
	margin-right: 0.5rem;
}
.initialism {
	font-size: 0.875em;
	text-transform: uppercase;
}
.blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}
.blockquote > :last-child {
	margin-bottom: 0;
}
.blockquote-footer {
	margin-top: -1rem;
	margin-bottom: 1rem;
	font-size: 0.875em;
	color: #6c757d;
}
.blockquote-footer::before {
	content: "— ";
}
.img-fluid {
	max-width: 100%;
	height: auto;
}
.img-thumbnail {
	padding: 0.25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	max-width: 100%;
	height: auto;
}
.figure {
	display: inline-block;
}
.figure-img {
	margin-bottom: 0.5rem;
	line-height: 1;
}
.figure-caption {
	font-size: 0.875em;
	color: #6c757d;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 576px) {
	.container,
	.container-sm {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container,
	.container-md,
	.container-sm {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 930px;
	}
}
@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1140px;
	}
}
@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1360px;
	}
}
.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) / -2);
	margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) / 2);
	padding-left: calc(var(--bs-gutter-x) / 2);
	margin-top: var(--bs-gutter-y);
}
.col {
	flex: 1 0 0%;
}
.row-cols-auto > * {
	flex: 0 0 auto;
	width: auto;
}
.row-cols-1 > * {
	flex: 0 0 auto;
	width: 100%;
}
.row-cols-2 > * {
	flex: 0 0 auto;
	width: 50%;
}
.row-cols-3 > * {
	flex: 0 0 auto;
	width: 33.3333333333%;
}
.row-cols-4 > * {
	flex: 0 0 auto;
	width: 25%;
}
.row-cols-5 > * {
	flex: 0 0 auto;
	width: 20%;
}
.row-cols-6 > * {
	flex: 0 0 auto;
	width: 16.6666666667%;
}
.col-auto {
	flex: 0 0 auto;
	width: auto;
}
.col-1 {
	flex: 0 0 auto;
	width: 8.3333333333%;
}
.col-2 {
	flex: 0 0 auto;
	width: 16.6666666667%;
}
.col-3 {
	flex: 0 0 auto;
	width: 25%;
}
.col-4 {
	flex: 0 0 auto;
	width: 33.3333333333%;
}
.col-5 {
	flex: 0 0 auto;
	width: 41.6666666667%;
}
.col-6 {
	flex: 0 0 auto;
	width: 50%;
}
.col-7 {
	flex: 0 0 auto;
	width: 58.3333333333%;
}
.col-8 {
	flex: 0 0 auto;
	width: 66.6666666667%;
}
.col-9 {
	flex: 0 0 auto;
	width: 75%;
}
.col-10 {
	flex: 0 0 auto;
	width: 83.3333333333%;
}
.col-11 {
	flex: 0 0 auto;
	width: 91.6666666667%;
}
.col-12 {
	flex: 0 0 auto;
	width: 100%;
}
.offset-1 {
	margin-left: 8.3333333333%;
}
.offset-2 {
	margin-left: 16.6666666667%;
}
.offset-3 {
	margin-left: 25%;
}
.offset-4 {
	margin-left: 33.3333333333%;
}
.offset-5 {
	margin-left: 41.6666666667%;
}
.offset-6 {
	margin-left: 50%;
}
.offset-7 {
	margin-left: 58.3333333333%;
}
.offset-8 {
	margin-left: 66.6666666667%;
}
.offset-9 {
	margin-left: 75%;
}
.offset-10 {
	margin-left: 83.3333333333%;
}
.offset-11 {
	margin-left: 91.6666666667%;
}
.g-0,
.gx-0 {
	--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
	--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
	--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
	--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
	--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
	--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
	--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
	--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
	--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
	--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
	--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
	--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
	.col-sm {
		flex: 1 0 0%;
	}
	.row-cols-sm-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-sm-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-sm-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-sm-3 > * {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.row-cols-sm-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-sm-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-sm-6 > * {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-sm-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}
	.col-sm-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-sm-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.col-sm-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}
	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-sm-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}
	.col-sm-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}
	.col-sm-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-sm-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}
	.col-sm-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}
	.col-sm-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-sm-0 {
		margin-left: 0;
	}
	.offset-sm-1 {
		margin-left: 8.3333333333%;
	}
	.offset-sm-2 {
		margin-left: 16.6666666667%;
	}
	.offset-sm-3 {
		margin-left: 25%;
	}
	.offset-sm-4 {
		margin-left: 33.3333333333%;
	}
	.offset-sm-5 {
		margin-left: 41.6666666667%;
	}
	.offset-sm-6 {
		margin-left: 50%;
	}
	.offset-sm-7 {
		margin-left: 58.3333333333%;
	}
	.offset-sm-8 {
		margin-left: 66.6666666667%;
	}
	.offset-sm-9 {
		margin-left: 75%;
	}
	.offset-sm-10 {
		margin-left: 83.3333333333%;
	}
	.offset-sm-11 {
		margin-left: 91.6666666667%;
	}
	.g-sm-0,
	.gx-sm-0 {
		--bs-gutter-x: 0;
	}
	.g-sm-0,
	.gy-sm-0 {
		--bs-gutter-y: 0;
	}
	.g-sm-1,
	.gx-sm-1 {
		--bs-gutter-x: 0.25rem;
	}
	.g-sm-1,
	.gy-sm-1 {
		--bs-gutter-y: 0.25rem;
	}
	.g-sm-2,
	.gx-sm-2 {
		--bs-gutter-x: 0.5rem;
	}
	.g-sm-2,
	.gy-sm-2 {
		--bs-gutter-y: 0.5rem;
	}
	.g-sm-3,
	.gx-sm-3 {
		--bs-gutter-x: 1rem;
	}
	.g-sm-3,
	.gy-sm-3 {
		--bs-gutter-y: 1rem;
	}
	.g-sm-4,
	.gx-sm-4 {
		--bs-gutter-x: 1.5rem;
	}
	.g-sm-4,
	.gy-sm-4 {
		--bs-gutter-y: 1.5rem;
	}
	.g-sm-5,
	.gx-sm-5 {
		--bs-gutter-x: 3rem;
	}
	.g-sm-5,
	.gy-sm-5 {
		--bs-gutter-y: 3rem;
	}
}
@media (min-width: 768px) {
	.col-md {
		flex: 1 0 0%;
	}
	.row-cols-md-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-md-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-md-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-md-3 > * {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.row-cols-md-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-md-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-md-6 > * {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-md-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}
	.col-md-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-md-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.col-md-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}
	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-md-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}
	.col-md-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}
	.col-md-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-md-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}
	.col-md-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}
	.col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-md-0 {
		margin-left: 0;
	}
	.offset-md-1 {
		margin-left: 8.3333333333%;
	}
	.offset-md-2 {
		margin-left: 16.6666666667%;
	}
	.offset-md-3 {
		margin-left: 25%;
	}
	.offset-md-4 {
		margin-left: 33.3333333333%;
	}
	.offset-md-5 {
		margin-left: 41.6666666667%;
	}
	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.3333333333%;
	}
	.offset-md-8 {
		margin-left: 66.6666666667%;
	}
	.offset-md-9 {
		margin-left: 75%;
	}
	.offset-md-10 {
		margin-left: 83.3333333333%;
	}
	.offset-md-11 {
		margin-left: 91.6666666667%;
	}
	.g-md-0,
	.gx-md-0 {
		--bs-gutter-x: 0;
	}
	.g-md-0,
	.gy-md-0 {
		--bs-gutter-y: 0;
	}
	.g-md-1,
	.gx-md-1 {
		--bs-gutter-x: 0.25rem;
	}
	.g-md-1,
	.gy-md-1 {
		--bs-gutter-y: 0.25rem;
	}
	.g-md-2,
	.gx-md-2 {
		--bs-gutter-x: 0.5rem;
	}
	.g-md-2,
	.gy-md-2 {
		--bs-gutter-y: 0.5rem;
	}
	.g-md-3,
	.gx-md-3 {
		--bs-gutter-x: 1rem;
	}
	.g-md-3,
	.gy-md-3 {
		--bs-gutter-y: 1rem;
	}
	.g-md-4,
	.gx-md-4 {
		--bs-gutter-x: 1.5rem;
	}
	.g-md-4,
	.gy-md-4 {
		--bs-gutter-y: 1.5rem;
	}
	.g-md-5,
	.gx-md-5 {
		--bs-gutter-x: 3rem;
	}
	.g-md-5,
	.gy-md-5 {
		--bs-gutter-y: 3rem;
	}
}
@media (min-width: 992px) {
	.col-lg {
		flex: 1 0 0%;
	}
	.row-cols-lg-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-lg-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-lg-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-lg-3 > * {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.row-cols-lg-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-lg-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-lg-6 > * {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}
	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}
	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}
	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}
	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}
	.col-lg-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}
	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-lg-0 {
		margin-left: 0;
	}
	.offset-lg-1 {
		margin-left: 8.3333333333%;
	}
	.offset-lg-2 {
		margin-left: 16.6666666667%;
	}
	.offset-lg-3 {
		margin-left: 25%;
	}
	.offset-lg-4 {
		margin-left: 33.3333333333%;
	}
	.offset-lg-5 {
		margin-left: 41.6666666667%;
	}
	.offset-lg-6 {
		margin-left: 50%;
	}
	.offset-lg-7 {
		margin-left: 58.3333333333%;
	}
	.offset-lg-8 {
		margin-left: 66.6666666667%;
	}
	.offset-lg-9 {
		margin-left: 75%;
	}
	.offset-lg-10 {
		margin-left: 83.3333333333%;
	}
	.offset-lg-11 {
		margin-left: 91.6666666667%;
	}
	.g-lg-0,
	.gx-lg-0 {
		--bs-gutter-x: 0;
	}
	.g-lg-0,
	.gy-lg-0 {
		--bs-gutter-y: 0;
	}
	.g-lg-1,
	.gx-lg-1 {
		--bs-gutter-x: 0.25rem;
	}
	.g-lg-1,
	.gy-lg-1 {
		--bs-gutter-y: 0.25rem;
	}
	.g-lg-2,
	.gx-lg-2 {
		--bs-gutter-x: 0.5rem;
	}
	.g-lg-2,
	.gy-lg-2 {
		--bs-gutter-y: 0.5rem;
	}
	.g-lg-3,
	.gx-lg-3 {
		--bs-gutter-x: 1rem;
	}
	.g-lg-3,
	.gy-lg-3 {
		--bs-gutter-y: 1rem;
	}
	.g-lg-4,
	.gx-lg-4 {
		--bs-gutter-x: 1.5rem;
	}
	.g-lg-4,
	.gy-lg-4 {
		--bs-gutter-y: 1.5rem;
	}
	.g-lg-5,
	.gx-lg-5 {
		--bs-gutter-x: 3rem;
	}
	.g-lg-5,
	.gy-lg-5 {
		--bs-gutter-y: 3rem;
	}
}
@media (min-width: 1200px) {
	.col-xl {
		flex: 1 0 0%;
	}
	.row-cols-xl-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-xl-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-xl-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-xl-3 > * {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.row-cols-xl-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-xl-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-xl-6 > * {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-xl-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}
	.col-xl-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-xl-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-xl-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.col-xl-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}
	.col-xl-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-xl-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}
	.col-xl-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}
	.col-xl-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-xl-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}
	.col-xl-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}
	.col-xl-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-xl-0 {
		margin-left: 0;
	}
	.offset-xl-1 {
		margin-left: 8.3333333333%;
	}
	.offset-xl-2 {
		margin-left: 16.6666666667%;
	}
	.offset-xl-3 {
		margin-left: 25%;
	}
	.offset-xl-4 {
		margin-left: 33.3333333333%;
	}
	.offset-xl-5 {
		margin-left: 41.6666666667%;
	}
	.offset-xl-6 {
		margin-left: 50%;
	}
	.offset-xl-7 {
		margin-left: 58.3333333333%;
	}
	.offset-xl-8 {
		margin-left: 66.6666666667%;
	}
	.offset-xl-9 {
		margin-left: 75%;
	}
	.offset-xl-10 {
		margin-left: 83.3333333333%;
	}
	.offset-xl-11 {
		margin-left: 91.6666666667%;
	}
	.g-xl-0,
	.gx-xl-0 {
		--bs-gutter-x: 0;
	}
	.g-xl-0,
	.gy-xl-0 {
		--bs-gutter-y: 0;
	}
	.g-xl-1,
	.gx-xl-1 {
		--bs-gutter-x: 0.25rem;
	}
	.g-xl-1,
	.gy-xl-1 {
		--bs-gutter-y: 0.25rem;
	}
	.g-xl-2,
	.gx-xl-2 {
		--bs-gutter-x: 0.5rem;
	}
	.g-xl-2,
	.gy-xl-2 {
		--bs-gutter-y: 0.5rem;
	}
	.g-xl-3,
	.gx-xl-3 {
		--bs-gutter-x: 1rem;
	}
	.g-xl-3,
	.gy-xl-3 {
		--bs-gutter-y: 1rem;
	}
	.g-xl-4,
	.gx-xl-4 {
		--bs-gutter-x: 1.5rem;
	}
	.g-xl-4,
	.gy-xl-4 {
		--bs-gutter-y: 1.5rem;
	}
	.g-xl-5,
	.gx-xl-5 {
		--bs-gutter-x: 3rem;
	}
	.g-xl-5,
	.gy-xl-5 {
		--bs-gutter-y: 3rem;
	}
}
@media (min-width: 1400px) {
	.col-xxl {
		flex: 1 0 0%;
	}
	.row-cols-xxl-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-xxl-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-xxl-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-xxl-3 > * {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.row-cols-xxl-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-xxl-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-xxl-6 > * {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-xxl-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-xxl-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}
	.col-xxl-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}
	.col-xxl-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-xxl-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}
	.col-xxl-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}
	.col-xxl-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-xxl-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}
	.col-xxl-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}
	.col-xxl-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-xxl-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}
	.col-xxl-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}
	.col-xxl-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-xxl-0 {
		margin-left: 0;
	}
	.offset-xxl-1 {
		margin-left: 8.3333333333%;
	}
	.offset-xxl-2 {
		margin-left: 16.6666666667%;
	}
	.offset-xxl-3 {
		margin-left: 25%;
	}
	.offset-xxl-4 {
		margin-left: 33.3333333333%;
	}
	.offset-xxl-5 {
		margin-left: 41.6666666667%;
	}
	.offset-xxl-6 {
		margin-left: 50%;
	}
	.offset-xxl-7 {
		margin-left: 58.3333333333%;
	}
	.offset-xxl-8 {
		margin-left: 66.6666666667%;
	}
	.offset-xxl-9 {
		margin-left: 75%;
	}
	.offset-xxl-10 {
		margin-left: 83.3333333333%;
	}
	.offset-xxl-11 {
		margin-left: 91.6666666667%;
	}
	.g-xxl-0,
	.gx-xxl-0 {
		--bs-gutter-x: 0;
	}
	.g-xxl-0,
	.gy-xxl-0 {
		--bs-gutter-y: 0;
	}
	.g-xxl-1,
	.gx-xxl-1 {
		--bs-gutter-x: 0.25rem;
	}
	.g-xxl-1,
	.gy-xxl-1 {
		--bs-gutter-y: 0.25rem;
	}
	.g-xxl-2,
	.gx-xxl-2 {
		--bs-gutter-x: 0.5rem;
	}
	.g-xxl-2,
	.gy-xxl-2 {
		--bs-gutter-y: 0.5rem;
	}
	.g-xxl-3,
	.gx-xxl-3 {
		--bs-gutter-x: 1rem;
	}
	.g-xxl-3,
	.gy-xxl-3 {
		--bs-gutter-y: 1rem;
	}
	.g-xxl-4,
	.gx-xxl-4 {
		--bs-gutter-x: 1.5rem;
	}
	.g-xxl-4,
	.gy-xxl-4 {
		--bs-gutter-y: 1.5rem;
	}
	.g-xxl-5,
	.gx-xxl-5 {
		--bs-gutter-x: 3rem;
	}
	.g-xxl-5,
	.gy-xxl-5 {
		--bs-gutter-y: 3rem;
	}
}
.table {
	--bs-table-bg: transparent;
	--bs-table-striped-color: #212529;
	--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
	--bs-table-active-color: #212529;
	--bs-table-active-bg: rgba(0, 0, 0, 0.1);
	--bs-table-hover-color: #212529;
	--bs-table-hover-bg: rgba(0, 0, 0, 0.075);
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
	vertical-align: top;
	border-color: #dee2e6;
}
.table > :not(caption) > * > * {
	padding: 0.5rem 0.5rem;
	background-color: var(--bs-table-bg);
	border-bottom-width: 1px;
	box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
	vertical-align: inherit;
}
.table > thead {
	vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
	border-bottom-color: currentColor;
}
.caption-top {
	caption-side: top;
}
.table-sm > :not(caption) > * > * {
	padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
	border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
	border-width: 0 1px;
}
.table-borderless > :not(caption) > * > * {
	border-bottom-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) {
	--bs-table-accent-bg: var(--bs-table-striped-bg);
	color: var(--bs-table-striped-color);
}
.table-active {
	--bs-table-accent-bg: var(--bs-table-active-bg);
	color: var(--bs-table-active-color);
}
.table-hover > tbody > tr:hover {
	--bs-table-accent-bg: var(--bs-table-hover-bg);
	color: var(--bs-table-hover-color);
}
.table-primary {
	--bs-table-bg: #cfe2ff;
	--bs-table-striped-bg: #c5d7f2;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #bacbe6;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #bfd1ec;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #bacbe6;
}
.table-secondary {
	--bs-table-bg: #e2e3e5;
	--bs-table-striped-bg: #d7d8da;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #cbccce;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #d1d2d4;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #cbccce;
}
.table-success {
	--bs-table-bg: #d1e7dd;
	--bs-table-striped-bg: #c7dbd2;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #bcd0c7;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #c1d6cc;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #bcd0c7;
}
.table-info {
	--bs-table-bg: #cff4fc;
	--bs-table-striped-bg: #c5e8ef;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #badce3;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #bfe2e9;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #badce3;
}
.table-warning {
	--bs-table-bg: #fff3cd;
	--bs-table-striped-bg: #f2e7c3;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #e6dbb9;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #ece1be;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #e6dbb9;
}
.table-danger {
	--bs-table-bg: #f8d7da;
	--bs-table-striped-bg: #eccccf;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #dfc2c4;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #e5c7ca;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #dfc2c4;
}
.table-light {
	--bs-table-bg: #f8f9fa;
	--bs-table-striped-bg: #ecedee;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #dfe0e1;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #e5e6e7;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #dfe0e1;
}
.table-dark {
	--bs-table-bg: #212529;
	--bs-table-striped-bg: #2c3034;
	--bs-table-striped-color: #fff;
	--bs-table-active-bg: #373b3e;
	--bs-table-active-color: #fff;
	--bs-table-hover-bg: #323539;
	--bs-table-hover-color: #fff;
	color: #fff;
	border-color: #373b3e;
}
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
	.table-responsive-sm {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
@media (max-width: 767.98px) {
	.table-responsive-md {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
@media (max-width: 991.98px) {
	.table-responsive-lg {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
@media (max-width: 1199.98px) {
	.table-responsive-xl {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
@media (max-width: 1399.98px) {
	.table-responsive-xxl {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
.form-label {
	margin-bottom: 0.5rem;
}
.col-form-label {
	padding-top: calc(0.375rem + 1px);
	padding-bottom: calc(0.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5;
}
.col-form-label-lg {
	padding-top: calc(0.5rem + 1px);
	padding-bottom: calc(0.5rem + 1px);
	font-size: 1.25rem;
}
.col-form-label-sm {
	padding-top: calc(0.25rem + 1px);
	padding-bottom: calc(0.25rem + 1px);
	font-size: 0.875rem;
}
.form-text {
	margin-top: 0.25rem;
	font-size: 0.875em;
	color: #6c757d;
}
.form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.form-control {
		transition: none;
	}
}
.form-control[type="file"] {
	overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
	cursor: pointer;
}
.form-control:focus {
	color: #212529;
	background-color: #fff;
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
	height: 1.5em;
}
.form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1;
}
.form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 1;
}
.form-control::placeholder {
	color: #6c757d;
	opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}
.form-control::file-selector-button {
	padding: 0.375rem 0.75rem;
	margin: -0.375rem -0.75rem;
	-webkit-margin-end: 0.75rem;
	margin-inline-end: 0.75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.form-control::file-selector-button {
		transition: none;
	}
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
	background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
	padding: 0.375rem 0.75rem;
	margin: -0.375rem -0.75rem;
	-webkit-margin-end: 0.75rem;
	margin-inline-end: 0.75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	-webkit-transition: color 0.15s ease-in-out,
		background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.form-control::-webkit-file-upload-button {
		-webkit-transition: none;
		transition: none;
	}
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
	background-color: #dde0e3;
}
.form-control-plaintext {
	display: block;
	width: 100%;
	padding: 0.375rem 0;
	margin-bottom: 0;
	line-height: 1.5;
	color: #212529;
	background-color: transparent;
	border: solid transparent;
	border-width: 1px 0;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
	padding-right: 0;
	padding-left: 0;
}
.form-control-sm {
	min-height: calc(1.5em + 0.5rem + 2px);
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
	padding: 0.25rem 0.5rem;
	margin: -0.25rem -0.5rem;
	-webkit-margin-end: 0.5rem;
	margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
	padding: 0.25rem 0.5rem;
	margin: -0.25rem -0.5rem;
	-webkit-margin-end: 0.5rem;
	margin-inline-end: 0.5rem;
}
.form-control-lg {
	min-height: calc(1.5em + 1rem + 2px);
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
	padding: 0.5rem 1rem;
	margin: -0.5rem -1rem;
	-webkit-margin-end: 1rem;
	margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
	padding: 0.5rem 1rem;
	margin: -0.5rem -1rem;
	-webkit-margin-end: 1rem;
	margin-inline-end: 1rem;
}
textarea.form-control {
	min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
	min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
	min-height: calc(1.5em + 1rem + 2px);
}
.form-control-color {
	max-width: 3rem;
	height: auto;
	padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
	cursor: pointer;
}
.form-control-color::-moz-color-swatch {
	height: 1.5em;
	border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
	height: 1.5em;
	border-radius: 0.25rem;
}
.form-select {
	display: block;
	width: 100%;
	padding: 0.375rem 2.25rem 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.form-select:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
	padding-right: 0.75rem;
	background-image: none;
}
.form-select:disabled {
	color: #6c757d;
	background-color: #e9ecef;
}
.form-select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #212529;
}
.form-select-sm {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	padding-left: 0.5rem;
	font-size: 0.875rem;
}
.form-select-lg {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 1rem;
	font-size: 1.25rem;
}
.form-check {
	display: block;
	min-height: 1.5rem;
	padding-left: 1.5em;
	margin-bottom: 0.125rem;
}
.form-check .form-check-input {
	float: left;
	margin-left: -1.5em;
}
.form-check-input {
	width: 1em;
	height: 1em;
	margin-top: 0.25em;
	vertical-align: top;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 1px solid rgba(0, 0, 0, 0.25);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
}
.form-check-input[type="checkbox"] {
	border-radius: 0.25em;
}
.form-check-input[type="radio"] {
	border-radius: 50%;
}
.form-check-input:active {
	filter: brightness(90%);
}
.form-check-input:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
	background-color: #0d6efd;
	border-color: #0d6efd;
}
.form-check-input:checked[type="checkbox"] {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
	background-color: #0d6efd;
	border-color: #0d6efd;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
	pointer-events: none;
	filter: none;
	opacity: 0.5;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
	opacity: 0.5;
}
.form-switch {
	padding-left: 2.5em;
}
.form-switch .form-check-input {
	width: 2em;
	margin-left: -2.5em;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
	background-position: left center;
	border-radius: 2em;
	transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.form-switch .form-check-input {
		transition: none;
	}
}
.form-switch .form-check-input:focus {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
	background-position: right center;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-inline {
	display: inline-block;
	margin-right: 1rem;
}
.btn-check {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}
.btn-check:disabled + .btn,
.btn-check[disabled] + .btn {
	pointer-events: none;
	filter: none;
	opacity: 0.65;
}
.form-range {
	width: 100%;
	height: 1.5rem;
	padding: 0;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.form-range:focus {
	outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
	box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
	box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
	border: 0;
}
.form-range::-webkit-slider-thumb {
	width: 1rem;
	height: 1rem;
	margin-top: -0.25rem;
	background-color: #0d6efd;
	border: 0;
	border-radius: 1rem;
	-webkit-transition: background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
	-webkit-appearance: none;
	appearance: none;
}
@media (prefers-reduced-motion: reduce) {
	.form-range::-webkit-slider-thumb {
		-webkit-transition: none;
		transition: none;
	}
}
.form-range::-webkit-slider-thumb:active {
	background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
	width: 100%;
	height: 0.5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem;
}
.form-range::-moz-range-thumb {
	width: 1rem;
	height: 1rem;
	background-color: #0d6efd;
	border: 0;
	border-radius: 1rem;
	-moz-transition: background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
	-moz-appearance: none;
	appearance: none;
}
@media (prefers-reduced-motion: reduce) {
	.form-range::-moz-range-thumb {
		-moz-transition: none;
		transition: none;
	}
}
.form-range::-moz-range-thumb:active {
	background-color: #b6d4fe;
}
.form-range::-moz-range-track {
	width: 100%;
	height: 0.5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem;
}
.form-range:disabled {
	pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
	background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
	background-color: #adb5bd;
}
.form-floating {
	position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
	height: calc(3.5rem + 2px);
	padding: 1rem 0.75rem;
}
.form-floating > label {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding: 1rem 0.75rem;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.form-floating > label {
		transition: none;
	}
}
.form-floating > .form-control::-webkit-input-placeholder {
	color: transparent;
}
.form-floating > .form-control::-moz-placeholder {
	color: transparent;
}
.form-floating > .form-control::placeholder {
	color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.form-floating > .form-select {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
	opacity: 0.65;
	transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
	opacity: 0.65;
	transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
	opacity: 0.65;
	transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
	position: relative;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
	z-index: 3;
}
.input-group .btn {
	position: relative;
	z-index: 2;
}
.input-group .btn:focus {
	z-index: 3;
}
.input-group-text {
	display: flex;
	align-items: center;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
}
.input-group-lg > .btn,
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text {
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	border-radius: 0.3rem;
}
.input-group-sm > .btn,
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	border-radius: 0.2rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
	padding-right: 3rem;
}
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
	> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation
	> :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.input-group
	> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
		.valid-feedback
	):not(.invalid-tooltip):not(.invalid-feedback) {
	margin-left: -1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.valid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.25rem;
	font-size: 0.875em;
	color: #198754;
}
.valid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: 0.25rem 0.5rem;
	margin-top: 0.1rem;
	font-size: 0.875rem;
	color: #fff;
	background-color: rgba(25, 135, 84, 0.9);
	border-radius: 0.25rem;
}
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
	display: block;
}
.form-control.is-valid,
.was-validated .form-control:valid {
	border-color: #198754;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
	border-color: #198754;
	box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
	padding-right: calc(1.5em + 0.75rem);
	background-position: top calc(0.375em + 0.1875rem) right
		calc(0.375em + 0.1875rem);
}
.form-select.is-valid,
.was-validated .form-select:valid {
	border-color: #198754;
	padding-right: 4.125rem;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
		url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-position: right 0.75rem center, center right 2.25rem;
	background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
	border-color: #198754;
	box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.form-check-input.is-valid,
.was-validated .form-check-input:valid {
	border-color: #198754;
}
.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
	background-color: #198754;
}
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
	box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
	color: #198754;
}
.form-check-inline .form-check-input ~ .valid-feedback {
	margin-left: 0.5em;
}
.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.25rem;
	font-size: 0.875em;
	color: #dc3545;
}
.invalid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: 0.25rem 0.5rem;
	margin-top: 0.1rem;
	font-size: 0.875rem;
	color: #fff;
	background-color: rgba(220, 53, 69, 0.9);
	border-radius: 0.25rem;
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
	display: block;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
	padding-right: calc(1.5em + 0.75rem);
	background-position: top calc(0.375em + 0.1875rem) right
		calc(0.375em + 0.1875rem);
}
.form-select.is-invalid,
.was-validated .form-select:invalid {
	border-color: #dc3545;
	padding-right: 4.125rem;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
		url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-position: right 0.75rem center, center right 2.25rem;
	background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
	border-color: #dc3545;
}
.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
	background-color: #dc3545;
}
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
	box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
	color: #dc3545;
}
.form-check-inline .form-check-input ~ .invalid-feedback {
	margin-left: 0.5em;
}
.btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}
.btn:hover {
	color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
	pointer-events: none;
	opacity: 0.65;
}
.btn-primary {
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}
.btn-primary:hover {
	color: #fff;
	background-color: #0b5ed7;
	border-color: #0a58ca;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
	color: #fff;
	background-color: #0b5ed7;
	border-color: #0a58ca;
	box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #0a58ca;
	border-color: #0a53be;
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}
.btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-secondary:hover {
	color: #fff;
	background-color: #5c636a;
	border-color: #565e64;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
	color: #fff;
	background-color: #5c636a;
	border-color: #565e64;
	box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #565e64;
	border-color: #51585e;
}
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-success {
	color: #fff;
	background-color: #198754;
	border-color: #198754;
}
.btn-success:hover {
	color: #fff;
	background-color: #157347;
	border-color: #146c43;
}
.btn-check:focus + .btn-success,
.btn-success:focus {
	color: #fff;
	background-color: #157347;
	border-color: #146c43;
	box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success,
.btn-success.active,
.btn-success:active,
.show > .btn-success.dropdown-toggle {
	color: #fff;
	background-color: #146c43;
	border-color: #13653f;
}
.btn-check:active + .btn-success:focus,
.btn-check:checked + .btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show > .btn-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
	color: #fff;
	background-color: #198754;
	border-color: #198754;
}
.btn-info {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0;
}
.btn-info:hover {
	color: #000;
	background-color: #31d2f2;
	border-color: #25cff2;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
	color: #000;
	background-color: #31d2f2;
	border-color: #25cff2;
	box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
	color: #000;
	background-color: #3dd5f3;
	border-color: #25cff2;
}
.btn-check:active + .btn-info:focus,
.btn-check:checked + .btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show > .btn-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0;
}
.btn-warning {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107;
}
.btn-warning:hover {
	color: #000;
	background-color: #ffca2c;
	border-color: #ffc720;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
	color: #000;
	background-color: #ffca2c;
	border-color: #ffc720;
	box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle {
	color: #000;
	background-color: #ffcd39;
	border-color: #ffc720;
}
.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107;
}
.btn-danger {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}
.btn-danger:hover {
	color: #fff;
	background-color: #bb2d3b;
	border-color: #b02a37;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
	color: #fff;
	background-color: #bb2d3b;
	border-color: #b02a37;
	box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:active + .btn-danger,
.btn-check:checked + .btn-danger,
.btn-danger.active,
.btn-danger:active,
.show > .btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #b02a37;
	border-color: #a52834;
}
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show > .btn-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}
.btn-light {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-light:hover {
	color: #000;
	background-color: #f9fafb;
	border-color: #f9fafb;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
	color: #000;
	background-color: #f9fafb;
	border-color: #f9fafb;
	box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:active + .btn-light,
.btn-check:checked + .btn-light,
.btn-light.active,
.btn-light:active,
.show > .btn-light.dropdown-toggle {
	color: #000;
	background-color: #f9fafb;
	border-color: #f9fafb;
}
.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show > .btn-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-dark {
	color: #fff;
	background-color: #212529;
	border-color: #212529;
}
.btn-dark:hover {
	color: #fff;
	background-color: #1c1f23;
	border-color: #1a1e21;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
	color: #fff;
	background-color: #1c1f23;
	border-color: #1a1e21;
	box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark,
.btn-dark.active,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #1a1e21;
	border-color: #191c1f;
}
.btn-check:active + .btn-dark:focus,
.btn-check:checked + .btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show > .btn-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
	color: #fff;
	background-color: #212529;
	border-color: #212529;
}
.btn-outline-primary {
	color: #0d6efd;
	border-color: #0d6efd;
}
.btn-outline-primary:hover {
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}
.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: #0d6efd;
	background-color: transparent;
}
.btn-outline-secondary {
	color: #6c757d;
	border-color: #6c757d;
}
.btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
	box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
	color: #6c757d;
	background-color: transparent;
}
.btn-outline-success {
	color: #198754;
	border-color: #198754;
}
.btn-outline-success:hover {
	color: #fff;
	background-color: #198754;
	border-color: #198754;
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
	box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:active + .btn-outline-success,
.btn-check:checked + .btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
	color: #fff;
	background-color: #198754;
	border-color: #198754;
}
.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
	color: #198754;
	background-color: transparent;
}
.btn-outline-info {
	color: #0dcaf0;
	border-color: #0dcaf0;
}
.btn-outline-info:hover {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
	box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:active + .btn-outline-info,
.btn-check:checked + .btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0;
}
.btn-check:active + .btn-outline-info:focus,
.btn-check:checked + .btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
	color: #0dcaf0;
	background-color: transparent;
}
.btn-outline-warning {
	color: #ffc107;
	border-color: #ffc107;
}
.btn-outline-warning:hover {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
	box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107;
}
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
	color: #ffc107;
	background-color: transparent;
}
.btn-outline-danger {
	color: #dc3545;
	border-color: #dc3545;
}
.btn-outline-danger:hover {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
	box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}
.btn-check:active + .btn-outline-danger:focus,
.btn-check:checked + .btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
	color: #dc3545;
	background-color: transparent;
}
.btn-outline-light {
	color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-outline-light:hover {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
	box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:active + .btn-outline-light,
.btn-check:checked + .btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-check:active + .btn-outline-light:focus,
.btn-check:checked + .btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
	color: #f8f9fa;
	background-color: transparent;
}
.btn-outline-dark {
	color: #212529;
	border-color: #212529;
}
.btn-outline-dark:hover {
	color: #fff;
	background-color: #212529;
	border-color: #212529;
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
	box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
	color: #fff;
	background-color: #212529;
	border-color: #212529;
}
.btn-check:active + .btn-outline-dark:focus,
.btn-check:checked + .btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
	box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
	color: #212529;
	background-color: transparent;
}
.btn-link {
	font-weight: 400;
	color: #0d6efd;
	text-decoration: underline;
}
.btn-link:hover {
	color: #0a58ca;
}
.btn-link.disabled,
.btn-link:disabled {
	color: #6c757d;
}
.btn-group-lg > .btn,
.btn-lg {
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	border-radius: 0.3rem;
}
.btn-group-sm > .btn,
.btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	border-radius: 0.2rem;
}
.fade {
	transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
	.fade {
		transition: none;
	}
}
.fade:not(.show) {
	opacity: 0;
}
.collapse:not(.show) {
	display: none;
}
.collapsing {
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
	.collapsing {
		transition: none;
	}
}
.dropdown,
.dropend,
.dropstart,
.dropup {
	position: relative;
}
.dropdown-toggle {
	white-space: nowrap;
}
.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropdown-menu {
	position: absolute;
	top: 100%;
	z-index: 1000;
	display: none;
	min-width: 10rem;
	padding: 0.5rem 0;
	margin: 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
	left: 0;
	margin-top: 0.125rem;
}
.dropdown-menu-start {
	--bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
	right: auto;
	left: 0;
}
.dropdown-menu-end {
	--bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
	right: 0;
	left: auto;
}
@media (min-width: 576px) {
	.dropdown-menu-sm-start {
		--bs-position: start;
	}
	.dropdown-menu-sm-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-sm-end {
		--bs-position: end;
	}
	.dropdown-menu-sm-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}
@media (min-width: 768px) {
	.dropdown-menu-md-start {
		--bs-position: start;
	}
	.dropdown-menu-md-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-md-end {
		--bs-position: end;
	}
	.dropdown-menu-md-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}
@media (min-width: 992px) {
	.dropdown-menu-lg-start {
		--bs-position: start;
	}
	.dropdown-menu-lg-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-lg-end {
		--bs-position: end;
	}
	.dropdown-menu-lg-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}
@media (min-width: 1200px) {
	.dropdown-menu-xl-start {
		--bs-position: start;
	}
	.dropdown-menu-xl-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-xl-end {
		--bs-position: end;
	}
	.dropdown-menu-xl-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}
@media (min-width: 1400px) {
	.dropdown-menu-xxl-start {
		--bs-position: start;
	}
	.dropdown-menu-xxl-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-xxl-end {
		--bs-position: end;
	}
	.dropdown-menu-xxl-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}
.dropup .dropdown-menu {
	top: auto;
	bottom: 100%;
}
.dropup .dropdown-menu[data-bs-popper] {
	margin-top: 0;
	margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0;
	border-right: 0.3em solid transparent;
	border-bottom: 0.3em solid;
	border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropend .dropdown-menu {
	top: 0;
	right: auto;
	left: 100%;
}
.dropend .dropdown-menu[data-bs-popper] {
	margin-top: 0;
	margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid transparent;
	border-right: 0;
	border-bottom: 0.3em solid transparent;
	border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropend .dropdown-toggle::after {
	vertical-align: 0;
}
.dropstart .dropdown-menu {
	top: 0;
	right: 100%;
	left: auto;
}
.dropstart .dropdown-menu[data-bs-popper] {
	margin-top: 0;
	margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}
.dropstart .dropdown-toggle::after {
	display: none;
}
.dropstart .dropdown-toggle::before {
	display: inline-block;
	margin-right: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid transparent;
	border-right: 0.3em solid;
	border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropstart .dropdown-toggle::before {
	vertical-align: 0;
}
.dropdown-divider {
	height: 0;
	margin: 0.5rem 0;
	overflow: hidden;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-item {
	display: block;
	width: 100%;
	padding: 0.25rem 1rem;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
	color: #1e2125;
	background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
	color: #fff;
	text-decoration: none;
	background-color: #0d6efd;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
	color: #adb5bd;
	pointer-events: none;
	background-color: transparent;
}
.dropdown-menu.show {
	display: block;
}
.dropdown-header {
	display: block;
	padding: 0.5rem 1rem;
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #6c757d;
	white-space: nowrap;
}
.dropdown-item-text {
	display: block;
	padding: 0.25rem 1rem;
	color: #212529;
}
.dropdown-menu-dark {
	color: #dee2e6;
	background-color: #343a40;
	border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
	color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
	color: #fff;
	background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
	color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
	border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
	color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
	color: #adb5bd;
}
.btn-group,
.btn-group-vertical {
	position: relative;
	display: inline-flex;
	vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
	position: relative;
	flex: 1 1 auto;
}
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
	z-index: 1;
}
.btn-toolbar {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.btn-toolbar .input-group {
	width: auto;
}
.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
	margin-left: -1px;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
	padding-right: 0.5625rem;
	padding-left: 0.5625rem;
}
.dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
	margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
	margin-right: 0;
}
.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
	padding-right: 0.375rem;
	padding-left: 0.375rem;
}
.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
	padding-right: 0.75rem;
	padding-left: 0.75rem;
}
.btn-group-vertical {
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
	width: 100%;
}
.btn-group-vertical > .btn-group:not(:first-child),
.btn-group-vertical > .btn:not(:first-child) {
	margin-top: -1px;
}
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn ~ .btn {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.nav {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.nav-link {
	display: block;
	padding: 0.5rem 1rem;
	text-decoration: none;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.nav-link {
		transition: none;
	}
}
.nav-link.disabled {
	color: #6c757d;
	pointer-events: none;
	cursor: default;
}
.nav-tabs {
	border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
	margin-bottom: -1px;
	background: 0 0;
	border: 1px solid transparent;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
	border-color: #e9ecef #e9ecef #dee2e6;
	isolation: isolate;
}
.nav-tabs .nav-link.disabled {
	color: #6c757d;
	background-color: transparent;
	border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: #495057;
	background-color: #fff;
	border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.nav-pills .nav-link {
	background: 0 0;
	border: 0;
	border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: #0d6efd;
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
	flex: 1 1 auto;
	text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
	flex-basis: 0;
	flex-grow: 1;
	text-align: center;
}
.tab-content > .tab-pane {
	display: none;
}
.tab-content > .active {
	display: block;
}
.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
	display: flex;
	flex-wrap: inherit;
	align-items: center;
	justify-content: space-between;
}
.navbar-brand {
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	margin-right: 1rem;
	font-size: 1.25rem;
	text-decoration: none;
	white-space: nowrap;
}
.navbar-nav {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 0;
}
.navbar-nav .dropdown-menu {
	position: static;
}
.navbar-text {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
}
.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.navbar-toggler {
		transition: none;
	}
}
.navbar-toggler:hover {
	text-decoration: none;
}
.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 0.25rem;
}
.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
.navbar-nav-scroll {
	max-height: var(--bs-scroll-height, 75vh);
	overflow-y: auto;
}
@media (min-width: 576px) {
	.navbar-expand-sm {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-sm .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-sm .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-sm .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.navbar-expand-sm .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-sm .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-sm .navbar-toggler {
		display: none;
	}
}
@media (min-width: 768px) {
	.navbar-expand-md {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-md .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-md .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.navbar-expand-md .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-md .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-md .navbar-toggler {
		display: none;
	}
}
@media (min-width: 992px) {
	.navbar-expand-lg {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-lg .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.navbar-expand-lg .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-lg .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-lg .navbar-toggler {
		display: none;
	}
}
@media (min-width: 1200px) {
	.navbar-expand-xl {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-xl .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-xl .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.navbar-expand-xl .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-xl .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-xl .navbar-toggler {
		display: none;
	}
}
@media (min-width: 1400px) {
	.navbar-expand-xxl {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-xxl .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-xxl .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-xxl .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.navbar-expand-xxl .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-xxl .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-xxl .navbar-toggler {
		display: none;
	}
}
.navbar-expand {
	flex-wrap: nowrap;
	justify-content: flex-start;
}
.navbar-expand .navbar-nav {
	flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
	position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
	padding-right: 0.5rem;
	padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
	overflow: visible;
}
.navbar-expand .navbar-collapse {
	display: flex !important;
	flex-basis: auto;
}
.navbar-expand .navbar-toggler {
	display: none;
}
.navbar-light .navbar-brand {
	color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
	color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
	color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
	color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
	color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
	color: rgba(0, 0, 0, 0.55);
	border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
	color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
	color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
	color: #fff;
}
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
	color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
	color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
	color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
	color: #fff;
}
.navbar-dark .navbar-toggler {
	color: rgba(255, 255, 255, 0.55);
	border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
	color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
	color: #fff;
}
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 0.25rem;
}
.card > hr {
	margin-right: 0;
	margin-left: 0;
}
.card > .list-group {
	border-top: inherit;
	border-bottom: inherit;
}
.card > .list-group:first-child {
	border-top-width: 0;
	border-top-left-radius: calc(0.25rem - 1px);
	border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
	border-bottom-width: 0;
	border-bottom-right-radius: calc(0.25rem - 1px);
	border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
	border-top: 0;
}
.card-body {
	flex: 1 1 auto;
	padding: 1rem 1rem;
}
.card-title {
	margin-bottom: 0.5rem;
}
.card-subtitle {
	margin-top: -0.25rem;
	margin-bottom: 0;
}
.card-text:last-child {
	margin-bottom: 0;
}
.card-link:hover {
	text-decoration: none;
}
.card-link + .card-link {
	margin-left: 1rem;
}
.card-header {
	padding: 0.5rem 1rem;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, 0.03);
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
	border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
	padding: 0.5rem 1rem;
	background-color: rgba(0, 0, 0, 0.03);
	border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
	border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
	margin-right: -0.5rem;
	margin-bottom: -0.5rem;
	margin-left: -0.5rem;
	border-bottom: 0;
}
.card-header-pills {
	margin-right: -0.5rem;
	margin-left: -0.5rem;
}
.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	border-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom,
.card-img-top {
	width: 100%;
}
.card-img,
.card-img-top {
	border-top-left-radius: calc(0.25rem - 1px);
	border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
	border-bottom-right-radius: calc(0.25rem - 1px);
	border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-group > .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-group {
		display: flex;
		flex-flow: row wrap;
	}
	.card-group > .card {
		flex: 1 0 0%;
		margin-bottom: 0;
	}
	.card-group > .card + .card {
		margin-left: 0;
		border-left: 0;
	}
	.card-group > .card:not(:last-child) {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	.card-group > .card:not(:last-child) .card-header,
	.card-group > .card:not(:last-child) .card-img-top {
		border-top-right-radius: 0;
	}
	.card-group > .card:not(:last-child) .card-footer,
	.card-group > .card:not(:last-child) .card-img-bottom {
		border-bottom-right-radius: 0;
	}
	.card-group > .card:not(:first-child) {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
	.card-group > .card:not(:first-child) .card-header,
	.card-group > .card:not(:first-child) .card-img-top {
		border-top-left-radius: 0;
	}
	.card-group > .card:not(:first-child) .card-footer,
	.card-group > .card:not(:first-child) .card-img-bottom {
		border-bottom-left-radius: 0;
	}
}
.accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 0;
	overflow-anchor: none;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
		border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
	.accordion-button {
		transition: none;
	}
}
.accordion-button.collapsed {
	border-bottom-width: 0;
}
.accordion-button:not(.collapsed) {
	color: #0c63e4;
	background-color: #e7f1ff;
}
.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(180deg);
}
.accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.accordion-button::after {
		transition: none;
	}
}
.accordion-button:hover {
	z-index: 2;
}
.accordion-button:focus {
	z-index: 3;
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
	margin-bottom: 0;
}
.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
	border-bottom-width: 1px;
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-collapse {
	border-bottom-width: 1px;
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}
.accordion-collapse {
	border: solid rgba(0, 0, 0, 0.125);
	border-width: 0 1px;
}
.accordion-body {
	padding: 1rem 1.25rem;
}
.accordion-flush .accordion-button {
	border-right: 0;
	border-left: 0;
	border-radius: 0;
}
.accordion-flush .accordion-collapse {
	border-width: 0;
}
.accordion-flush .accordion-item:first-of-type .accordion-button {
	border-top-width: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
	border-bottom-width: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 1rem;
	list-style: none;
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
	float: left;
	padding-right: 0.5rem;
	color: #6c757d;
	content: var(--bs-breadcrumb-divider, "https://creativelayers.net/");
}
.breadcrumb-item.active {
	color: #6c757d;
}
.pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
}
.page-link {
	position: relative;
	display: block;
	color: #0d6efd;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #dee2e6;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.page-link {
		transition: none;
	}
}
.page-link:hover {
	z-index: 2;
	color: #0a58ca;
	background-color: #e9ecef;
	border-color: #dee2e6;
}
.page-link:focus {
	z-index: 3;
	color: #0a58ca;
	background-color: #e9ecef;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.page-item:not(:first-child) .page-link {
	margin-left: -1px;
}
.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}
.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	background-color: #fff;
	border-color: #dee2e6;
}
.page-link {
	padding: 0.375rem 0.75rem;
}
.page-item:first-child .page-link {
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}
.pagination-lg .page-link {
	padding: 0.75rem 1.5rem;
	font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: 0.3rem;
	border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
	border-top-left-radius: 0.2rem;
	border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
	border-top-right-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
}
.badge {
	display: inline-block;
	padding: 0.35em 0.65em;
	font-size: 0.75em;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.25rem;
}
.badge:empty {
	display: none;
}
.btn .badge {
	position: relative;
	top: -1px;
}
.alert {
	position: relative;
	padding: 1rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}
.alert-heading {
	color: inherit;
}
.alert-link {
	font-weight: 700;
}
.alert-dismissible {
	padding-right: 3rem;
}
.alert-dismissible .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	padding: 1.25rem 1rem;
}
.alert-primary {
	color: #084298;
	background-color: #cfe2ff;
	border-color: #b6d4fe;
}
.alert-primary .alert-link {
	color: #06357a;
}
.alert-secondary {
	color: #41464b;
	background-color: #e2e3e5;
	border-color: #d3d6d8;
}
.alert-secondary .alert-link {
	color: #34383c;
}
.alert-success {
	color: #0f5132;
	background-color: #d1e7dd;
	border-color: #badbcc;
}
.alert-success .alert-link {
	color: #0c4128;
}
.alert-info {
	color: #055160;
	background-color: #cff4fc;
	border-color: #b6effb;
}
.alert-info .alert-link {
	color: #04414d;
}
.alert-warning {
	color: #664d03;
	background-color: #fff3cd;
	border-color: #ffecb5;
}
.alert-warning .alert-link {
	color: #523e02;
}
.alert-danger {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
}
.alert-danger .alert-link {
	color: #6a1a21;
}
.alert-light {
	color: #636464;
	background-color: #fefefe;
	border-color: #fdfdfe;
}
.alert-light .alert-link {
	color: #4f5050;
}
.alert-dark {
	color: #141619;
	background-color: #d3d3d4;
	border-color: #bcbebf;
}
.alert-dark .alert-link {
	color: #101214;
}
@-webkit-keyframes progress-bar-stripes {
	0% {
		background-position-x: 1rem;
	}
}
@keyframes progress-bar-stripes {
	0% {
		background-position-x: 1rem;
	}
}
.progress {
	display: flex;
	height: 1rem;
	overflow: hidden;
	font-size: 0.75rem;
	background-color: #e9ecef;
	border-radius: 0.25rem;
}
.progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #0d6efd;
	transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
	.progress-bar {
		transition: none;
	}
}
.progress-bar-striped {
	background-image: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.15) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, 0.15) 50%,
		rgba(255, 255, 255, 0.15) 75%,
		transparent 75%,
		transparent
	);
	background-size: 1rem 1rem;
}
.progress-bar-animated {
	-webkit-animation: 1s linear infinite progress-bar-stripes;
	animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
	.progress-bar-animated {
		-webkit-animation: none;
		animation: none;
	}
}
.list-group {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: 0.25rem;
}
.list-group-item-action {
	width: 100%;
	color: #495057;
	text-align: inherit;
}
.list-group-item-action:focus,
.list-group-item-action:hover {
	z-index: 1;
	color: #495057;
	text-decoration: none;
	background-color: #f8f9fa;
}
.list-group-item-action:active {
	color: #212529;
	background-color: #e9ecef;
}
.list-group-item {
	position: relative;
	display: block;
	padding: 0.5rem 1rem;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}
.list-group-item:last-child {
	border-bottom-right-radius: inherit;
	border-bottom-left-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
	color: #6c757d;
	pointer-events: none;
	background-color: #fff;
}
.list-group-item.active {
	z-index: 2;
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}
.list-group-item + .list-group-item {
	border-top-width: 0;
}
.list-group-item + .list-group-item.active {
	margin-top: -1px;
	border-top-width: 1px;
}
.list-group-horizontal {
	flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
	border-bottom-left-radius: 0.25rem;
	border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
	border-top-right-radius: 0.25rem;
	border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
	margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
	border-top-width: 1px;
	border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
	margin-left: -1px;
	border-left-width: 1px;
}
@media (min-width: 576px) {
	.list-group-horizontal-sm {
		flex-direction: row;
	}
	.list-group-horizontal-sm > .list-group-item:first-child {
		border-bottom-left-radius: 0.25rem;
		border-top-right-radius: 0;
	}
	.list-group-horizontal-sm > .list-group-item:last-child {
		border-top-right-radius: 0.25rem;
		border-bottom-left-radius: 0;
	}
	.list-group-horizontal-sm > .list-group-item.active {
		margin-top: 0;
	}
	.list-group-horizontal-sm > .list-group-item + .list-group-item {
		border-top-width: 1px;
		border-left-width: 0;
	}
	.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
		margin-left: -1px;
		border-left-width: 1px;
	}
}
@media (min-width: 768px) {
	.list-group-horizontal-md {
		flex-direction: row;
	}
	.list-group-horizontal-md > .list-group-item:first-child {
		border-bottom-left-radius: 0.25rem;
		border-top-right-radius: 0;
	}
	.list-group-horizontal-md > .list-group-item:last-child {
		border-top-right-radius: 0.25rem;
		border-bottom-left-radius: 0;
	}
	.list-group-horizontal-md > .list-group-item.active {
		margin-top: 0;
	}
	.list-group-horizontal-md > .list-group-item + .list-group-item {
		border-top-width: 1px;
		border-left-width: 0;
	}
	.list-group-horizontal-md > .list-group-item + .list-group-item.active {
		margin-left: -1px;
		border-left-width: 1px;
	}
}
@media (min-width: 992px) {
	.list-group-horizontal-lg {
		flex-direction: row;
	}
	.list-group-horizontal-lg > .list-group-item:first-child {
		border-bottom-left-radius: 0.25rem;
		border-top-right-radius: 0;
	}
	.list-group-horizontal-lg > .list-group-item:last-child {
		border-top-right-radius: 0.25rem;
		border-bottom-left-radius: 0;
	}
	.list-group-horizontal-lg > .list-group-item.active {
		margin-top: 0;
	}
	.list-group-horizontal-lg > .list-group-item + .list-group-item {
		border-top-width: 1px;
		border-left-width: 0;
	}
	.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
		margin-left: -1px;
		border-left-width: 1px;
	}
}
@media (min-width: 1200px) {
	.list-group-horizontal-xl {
		flex-direction: row;
	}
	.list-group-horizontal-xl > .list-group-item:first-child {
		border-bottom-left-radius: 0.25rem;
		border-top-right-radius: 0;
	}
	.list-group-horizontal-xl > .list-group-item:last-child {
		border-top-right-radius: 0.25rem;
		border-bottom-left-radius: 0;
	}
	.list-group-horizontal-xl > .list-group-item.active {
		margin-top: 0;
	}
	.list-group-horizontal-xl > .list-group-item + .list-group-item {
		border-top-width: 1px;
		border-left-width: 0;
	}
	.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
		margin-left: -1px;
		border-left-width: 1px;
	}
}
@media (min-width: 1400px) {
	.list-group-horizontal-xxl {
		flex-direction: row;
	}
	.list-group-horizontal-xxl > .list-group-item:first-child {
		border-bottom-left-radius: 0.25rem;
		border-top-right-radius: 0;
	}
	.list-group-horizontal-xxl > .list-group-item:last-child {
		border-top-right-radius: 0.25rem;
		border-bottom-left-radius: 0;
	}
	.list-group-horizontal-xxl > .list-group-item.active {
		margin-top: 0;
	}
	.list-group-horizontal-xxl > .list-group-item + .list-group-item {
		border-top-width: 1px;
		border-left-width: 0;
	}
	.list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
		margin-left: -1px;
		border-left-width: 1px;
	}
}
.list-group-flush {
	border-radius: 0;
}
.list-group-flush > .list-group-item {
	border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
	border-bottom-width: 0;
}
.list-group-item-primary {
	color: #084298;
	background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
	color: #084298;
	background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
	color: #fff;
	background-color: #084298;
	border-color: #084298;
}
.list-group-item-secondary {
	color: #41464b;
	background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
	color: #41464b;
	background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
	color: #fff;
	background-color: #41464b;
	border-color: #41464b;
}
.list-group-item-success {
	color: #0f5132;
	background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
	color: #0f5132;
	background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
	color: #fff;
	background-color: #0f5132;
	border-color: #0f5132;
}
.list-group-item-info {
	color: #055160;
	background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
	color: #055160;
	background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
	color: #fff;
	background-color: #055160;
	border-color: #055160;
}
.list-group-item-warning {
	color: #664d03;
	background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
	color: #664d03;
	background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
	color: #fff;
	background-color: #664d03;
	border-color: #664d03;
}
.list-group-item-danger {
	color: #842029;
	background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
	color: #842029;
	background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
	color: #fff;
	background-color: #842029;
	border-color: #842029;
}
.list-group-item-light {
	color: #636464;
	background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
	color: #636464;
	background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
	color: #fff;
	background-color: #636464;
	border-color: #636464;
}
.list-group-item-dark {
	color: #141619;
	background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
	color: #141619;
	background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
	color: #fff;
	background-color: #141619;
	border-color: #141619;
}
.btn-close {
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: 0.25em 0.25em;
	color: #000;
	background: transparent
		url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
		center/1em auto no-repeat;
	border: 0;
	border-radius: 0.25rem;
	opacity: 0.5;
}
.btn-close:hover {
	color: #000;
	text-decoration: none;
	opacity: 0.75;
}
.btn-close:focus {
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	opacity: 1;
}
.btn-close.disabled,
.btn-close:disabled {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	opacity: 0.25;
}
.btn-close-white {
	filter: invert(1) grayscale(100%) brightness(200%);
}
.toast {
	width: 350px;
	max-width: 100%;
	font-size: 0.875rem;
	pointer-events: auto;
	background-color: rgba(255, 255, 255, 0.85);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
	opacity: 0;
}
.toast.hide {
	display: none;
}
.toast-container {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 100%;
	pointer-events: none;
}
.toast-container > :not(:last-child) {
	margin-bottom: 0.75rem;
}
.toast-header {
	display: flex;
	align-items: center;
	padding: 0.5rem 0.75rem;
	color: #6c757d;
	background-color: rgba(255, 255, 255, 0.85);
	background-clip: padding-box;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	border-top-left-radius: calc(0.25rem - 1px);
	border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
	margin-right: -0.375rem;
	margin-left: 0.75rem;
}
.toast-body {
	padding: 0.75rem;
	word-wrap: break-word;
}
.modal-open {
	overflow: hidden;
}
.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}
.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
	transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: none;
	}
}
.modal.show .modal-dialog {
	transform: none;
}
.modal.modal-static .modal-dialog {
	transform: scale(1.02);
}
.modal-dialog-scrollable {
	height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
	max-height: 100%;
	overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}
.modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - 1rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.show {
	opacity: 0.5;
}
.modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: calc(0.3rem - 1px);
	border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
	padding: 0.5rem 0.5rem;
	margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
}
.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}
.modal-footer {
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 0;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(0.3rem - 1px);
	border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
	margin: 0.25rem;
}
.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}
@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
	.modal-dialog-scrollable {
		height: calc(100% - 3.5rem);
	}
	.modal-dialog-centered {
		min-height: calc(100% - 3.5rem);
	}
	.modal-sm {
		max-width: 300px;
	}
}
@media (min-width: 992px) {
	.modal-lg,
	.modal-xl {
		max-width: 800px;
	}
}
@media (min-width: 1200px) {
	.modal-xl {
		max-width: 1140px;
	}
}
.modal-fullscreen {
	width: 100vw;
	max-width: none;
	height: 100%;
	margin: 0;
}
.modal-fullscreen .modal-content {
	height: 100%;
	border: 0;
	border-radius: 0;
}
.modal-fullscreen .modal-header {
	border-radius: 0;
}
.modal-fullscreen .modal-body {
	overflow-y: auto;
}
.modal-fullscreen .modal-footer {
	border-radius: 0;
}
@media (max-width: 575.98px) {
	.modal-fullscreen-sm-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0;
	}
	.modal-fullscreen-sm-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0;
	}
	.modal-fullscreen-sm-down .modal-header {
		border-radius: 0;
	}
	.modal-fullscreen-sm-down .modal-body {
		overflow-y: auto;
	}
	.modal-fullscreen-sm-down .modal-footer {
		border-radius: 0;
	}
}
@media (max-width: 767.98px) {
	.modal-fullscreen-md-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0;
	}
	.modal-fullscreen-md-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0;
	}
	.modal-fullscreen-md-down .modal-header {
		border-radius: 0;
	}
	.modal-fullscreen-md-down .modal-body {
		overflow-y: auto;
	}
	.modal-fullscreen-md-down .modal-footer {
		border-radius: 0;
	}
}
@media (max-width: 991.98px) {
	.modal-fullscreen-lg-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0;
	}
	.modal-fullscreen-lg-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0;
	}
	.modal-fullscreen-lg-down .modal-header {
		border-radius: 0;
	}
	.modal-fullscreen-lg-down .modal-body {
		overflow-y: auto;
	}
	.modal-fullscreen-lg-down .modal-footer {
		border-radius: 0;
	}
}
@media (max-width: 1199.98px) {
	.modal-fullscreen-xl-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0;
	}
	.modal-fullscreen-xl-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0;
	}
	.modal-fullscreen-xl-down .modal-header {
		border-radius: 0;
	}
	.modal-fullscreen-xl-down .modal-body {
		overflow-y: auto;
	}
	.modal-fullscreen-xl-down .modal-footer {
		border-radius: 0;
	}
}
@media (max-width: 1399.98px) {
	.modal-fullscreen-xxl-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0;
	}
	.modal-fullscreen-xxl-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0;
	}
	.modal-fullscreen-xxl-down .modal-header {
		border-radius: 0;
	}
	.modal-fullscreen-xxl-down .modal-body {
		overflow-y: auto;
	}
	.modal-fullscreen-xxl-down .modal-footer {
		border-radius: 0;
	}
}
.tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	margin: 0;
	font-family: var(--bs-font-sans-serif);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	white-space: normal;
	line-break: auto;
	font-size: 0.875rem;
	word-wrap: break-word;
	opacity: 0;
}
.tooltip.show {
	opacity: 0.9;
}
.tooltip .tooltip-arrow {
	position: absolute;
	display: block;
	width: 0.8rem;
	height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
	position: absolute;
	content: "";
	border-color: transparent;
	border-style: solid;
}
.bs-tooltip-auto[data-popper-placement^="top"],
.bs-tooltip-top {
	padding: 0.4rem 0;
}
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow,
.bs-tooltip-top .tooltip-arrow {
	bottom: 0;
}
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
	top: -1px;
	border-width: 0.4rem 0.4rem 0;
	border-top-color: #000;
}
.bs-tooltip-auto[data-popper-placement^="right"],
.bs-tooltip-end {
	padding: 0 0.4rem;
}
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow {
	left: 0;
	width: 0.4rem;
	height: 0.8rem;
}
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
	right: -1px;
	border-width: 0.4rem 0.4rem 0.4rem 0;
	border-right-color: #000;
}
.bs-tooltip-auto[data-popper-placement^="bottom"],
.bs-tooltip-bottom {
	padding: 0.4rem 0;
}
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow,
.bs-tooltip-bottom .tooltip-arrow {
	top: 0;
}
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
	bottom: -1px;
	border-width: 0 0.4rem 0.4rem;
	border-bottom-color: #000;
}
.bs-tooltip-auto[data-popper-placement^="left"],
.bs-tooltip-start {
	padding: 0 0.4rem;
}
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow,
.bs-tooltip-start .tooltip-arrow {
	right: 0;
	width: 0.4rem;
	height: 0.8rem;
}
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
	left: -1px;
	border-width: 0.4rem 0 0.4rem 0.4rem;
	border-left-color: #000;
}
.tooltip-inner {
	max-width: 200px;
	padding: 0.25rem 0.5rem;
	color: #fff;
	text-align: center;
	background-color: #000;
	border-radius: 0.25rem;
}
.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1060;
	display: block;
	max-width: 276px;
	font-family: var(--bs-font-sans-serif);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	white-space: normal;
	line-break: auto;
	font-size: 0.875rem;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
}
.popover .popover-arrow {
	position: absolute;
	display: block;
	width: 1rem;
	height: 0.5rem;
}
.popover .popover-arrow::after,
.popover .popover-arrow::before {
	position: absolute;
	display: block;
	content: "";
	border-color: transparent;
	border-style: solid;
}
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow,
.bs-popover-top > .popover-arrow {
	bottom: calc(-0.5rem - 1px);
}
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before,
.bs-popover-top > .popover-arrow::before {
	bottom: 0;
	border-width: 0.5rem 0.5rem 0;
	border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after,
.bs-popover-top > .popover-arrow::after {
	bottom: 1px;
	border-width: 0.5rem 0.5rem 0;
	border-top-color: #fff;
}
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow,
.bs-popover-end > .popover-arrow {
	left: calc(-0.5rem - 1px);
	width: 0.5rem;
	height: 1rem;
}
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before,
.bs-popover-end > .popover-arrow::before {
	left: 0;
	border-width: 0.5rem 0.5rem 0.5rem 0;
	border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after,
.bs-popover-end > .popover-arrow::after {
	left: 1px;
	border-width: 0.5rem 0.5rem 0.5rem 0;
	border-right-color: #fff;
}
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow,
.bs-popover-bottom > .popover-arrow {
	top: calc(-0.5rem - 1px);
}
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before,
.bs-popover-bottom > .popover-arrow::before {
	top: 0;
	border-width: 0 0.5rem 0.5rem 0.5rem;
	border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after,
.bs-popover-bottom > .popover-arrow::after {
	top: 1px;
	border-width: 0 0.5rem 0.5rem 0.5rem;
	border-bottom-color: #fff;
}
.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before,
.bs-popover-bottom .popover-header::before {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 1rem;
	margin-left: -0.5rem;
	content: "";
	border-bottom: 1px solid #f0f0f0;
}
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow,
.bs-popover-start > .popover-arrow {
	right: calc(-0.5rem - 1px);
	width: 0.5rem;
	height: 1rem;
}
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before,
.bs-popover-start > .popover-arrow::before {
	right: 0;
	border-width: 0.5rem 0 0.5rem 0.5rem;
	border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
	right: 1px;
	border-width: 0.5rem 0 0.5rem 0.5rem;
	border-left-color: #fff;
}
.popover-header {
	padding: 0.5rem 1rem;
	margin-bottom: 0;
	font-size: 1rem;
	background-color: #f0f0f0;
	border-bottom: 1px solid #d8d8d8;
	border-top-left-radius: calc(0.3rem - 1px);
	border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
	display: none;
}
.popover-body {
	padding: 1rem 1rem;
	color: #212529;
}
.carousel {
	position: relative;
}
.carousel.pointer-event {
	touch-action: pan-y;
}
.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.carousel-inner::after {
	display: block;
	clear: both;
	content: "";
}
.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	margin-right: -100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.carousel-item {
		transition: none;
	}
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
	display: block;
}
.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
	transform: translateX(100%);
}
.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
	transform: translateX(-100%);
}
.carousel-fade .carousel-item {
	opacity: 0;
	transition-property: opacity;
	transform: none;
}
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
	z-index: 1;
	opacity: 1;
}
.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
	z-index: 0;
	opacity: 0;
	transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
	.carousel-fade .active.carousel-item-end,
	.carousel-fade .active.carousel-item-start {
		transition: none;
	}
}
.carousel-control-next,
.carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15%;
	padding: 0;
	color: #fff;
	text-align: center;
	background: 0 0;
	border: 0;
	opacity: 0.5;
	transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
	.carousel-control-next,
	.carousel-control-prev {
		transition: none;
	}
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: 0.9;
}
.carousel-control-prev {
	left: 0;
}
.carousel-control-next {
	right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100% 100%;
}
.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-right: 15%;
	margin-bottom: 1rem;
	margin-left: 15%;
	list-style: none;
}
.carousel-indicators [data-bs-target] {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	padding: 0;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #fff;
	background-clip: padding-box;
	border: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	opacity: 0.5;
	transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
	.carousel-indicators [data-bs-target] {
		transition: none;
	}
}
.carousel-indicators .active {
	opacity: 1;
}
.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 1.25rem;
	left: 15%;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	color: #fff;
	text-align: center;
}
.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
	filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
	background-color: #000;
}
.carousel-dark .carousel-caption {
	color: #000;
}
@-webkit-keyframes spinner-border {
	to {
		transform: rotate(360deg);
	}
}
@keyframes spinner-border {
	to {
		transform: rotate(360deg);
	}
}
.spinner-border {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: text-bottom;
	border: 0.25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: 0.75s linear infinite spinner-border;
	animation: 0.75s linear infinite spinner-border;
}
.spinner-border-sm {
	width: 1rem;
	height: 1rem;
	border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
	0% {
		transform: scale(0);
	}
	50% {
		opacity: 1;
		transform: none;
	}
}
@keyframes spinner-grow {
	0% {
		transform: scale(0);
	}
	50% {
		opacity: 1;
		transform: none;
	}
}
.spinner-grow {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: text-bottom;
	background-color: currentColor;
	border-radius: 50%;
	opacity: 0;
	-webkit-animation: 0.75s linear infinite spinner-grow;
	animation: 0.75s linear infinite spinner-grow;
}
.spinner-grow-sm {
	width: 1rem;
	height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
	.spinner-border,
	.spinner-grow {
		-webkit-animation-duration: 1.5s;
		animation-duration: 1.5s;
	}
}
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}
.link-primary {
	color: #0d6efd;
}
.link-primary:focus,
.link-primary:hover {
	color: #0a58ca;
}
.link-secondary {
	color: #6c757d;
}
.link-secondary:focus,
.link-secondary:hover {
	color: #565e64;
}
.link-success {
	color: #198754;
}
.link-success:focus,
.link-success:hover {
	color: #146c43;
}
.link-info {
	color: #0dcaf0;
}
.link-info:focus,
.link-info:hover {
	color: #3dd5f3;
}
.link-warning {
	color: #ffc107;
}
.link-warning:focus,
.link-warning:hover {
	color: #ffcd39;
}
.link-danger {
	color: #dc3545;
}
.link-danger:focus,
.link-danger:hover {
	color: #b02a37;
}
.link-light {
	color: #f8f9fa;
}
.link-light:focus,
.link-light:hover {
	color: #f9fafb;
}
.link-dark {
	color: #212529;
}
.link-dark:focus,
.link-dark:hover {
	color: #1a1e21;
}
.ratio {
	position: relative;
	width: 100%;
}
.ratio::before {
	display: block;
	padding-top: var(--bs-aspect-ratio);
	content: "";
}
.ratio > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ratio-1x1 {
	--bs-aspect-ratio: 100%;
}
.ratio-4x3 {
	--bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
	--bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
	--bs-aspect-ratio: calc(9 / 21 * 100%);
}
.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}
.fixed-bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
}
.sticky-top {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1020;
}
@media (min-width: 576px) {
	.sticky-sm-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}
@media (min-width: 768px) {
	.sticky-md-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}
@media (min-width: 992px) {
	.sticky-lg-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}
@media (min-width: 1200px) {
	.sticky-xl-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}
@media (min-width: 1400px) {
	.sticky-xxl-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.stretched-link::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}
.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.align-baseline {
	vertical-align: baseline !important;
}
.align-top {
	vertical-align: top !important;
}
.align-middle {
	vertical-align: middle !important;
}
.align-bottom {
	vertical-align: bottom !important;
}
.align-text-bottom {
	vertical-align: text-bottom !important;
}
.align-text-top {
	vertical-align: text-top !important;
}
.float-start {
	float: left !important;
}
.float-end {
	float: right !important;
}
.float-none {
	float: none !important;
}
.overflow-auto {
	overflow: auto !important;
}
.overflow-hidden {
	overflow: hidden !important;
}
.overflow-visible {
	overflow: visible !important;
}
.overflow-scroll {
	overflow: scroll !important;
}
.d-inline {
	display: inline !important;
}
.d-inline-block {
	display: inline-block !important;
}
.d-block {
	display: block !important;
}
.d-grid {
	display: grid !important;
}
.d-table {
	display: table !important;
}
.d-table-row {
	display: table-row !important;
}
.d-table-cell {
	display: table-cell !important;
}
.d-flex {
	display: flex !important;
}
.d-inline-flex {
	display: inline-flex !important;
}
.d-none {
	display: none !important;
}
.shadow {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
	box-shadow: none !important;
}
.position-static {
	position: static !important;
}
.position-relative {
	position: relative !important;
}
.position-absolute {
	position: absolute !important;
}
.position-fixed {
	position: fixed !important;
}
.position-sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
}
.top-0 {
	top: 0 !important;
}
.top-50 {
	top: 50% !important;
}
.top-100 {
	top: 100% !important;
}
.bottom-0 {
	bottom: 0 !important;
}
.bottom-50 {
	bottom: 50% !important;
}
.bottom-100 {
	bottom: 100% !important;
}
.start-0 {
	left: 0 !important;
}
.start-50 {
	left: 50% !important;
}
.start-100 {
	left: 100% !important;
}
.end-0 {
	right: 0 !important;
}
.end-50 {
	right: 50% !important;
}
.end-100 {
	right: 100% !important;
}
.translate-middle {
	transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
	transform: translateX(-50%) !important;
}
.translate-middle-y {
	transform: translateY(-50%) !important;
}
.border {
	border: 1px solid #dee2e6 !important;
}
.border-0 {
	border: 0 !important;
}
.border-top {
	border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
	border-top: 0 !important;
}
.border-end {
	border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
	border-right: 0 !important;
}
.border-bottom {
	border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
	border-bottom: 0 !important;
}
.border-start {
	border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
	border-left: 0 !important;
}
.border-primary {
	border-color: #0d6efd !important;
}
.border-secondary {
	border-color: #6c757d !important;
}
.border-success {
	border-color: #198754 !important;
}
.border-info {
	border-color: #0dcaf0 !important;
}
.border-warning {
	border-color: #ffc107 !important;
}
.border-danger {
	border-color: #dc3545 !important;
}
.border-light {
	border-color: #f8f9fa !important;
}
.border-dark {
	border-color: #212529 !important;
}
.border-white {
	border-color: #fff !important;
}
.border-0 {
	border-width: 0 !important;
}
.border-1 {
	border-width: 1px !important;
}
.border-2 {
	border-width: 2px !important;
}
.border-3 {
	border-width: 3px !important;
}
.border-4 {
	border-width: 4px !important;
}
.border-5 {
	border-width: 5px !important;
}
.w-25 {
	width: 25% !important;
}
.w-50 {
	width: 50% !important;
}
.w-75 {
	width: 75% !important;
}
.w-100 {
	width: 100% !important;
}
.w-auto {
	width: auto !important;
}
.mw-100 {
	max-width: 100% !important;
}
.vw-100 {
	width: 100vw !important;
}
.min-vw-100 {
	min-width: 100vw !important;
}
.h-25 {
	height: 25% !important;
}
.h-50 {
	height: 50% !important;
}
.h-75 {
	height: 75% !important;
}
.h-100 {
	height: 100% !important;
}
.h-auto {
	height: auto !important;
}
.mh-100 {
	max-height: 100% !important;
}
.vh-100 {
	height: 100vh !important;
}
.min-vh-100 {
	min-height: 100vh !important;
}
.flex-fill {
	flex: 1 1 auto !important;
}
.flex-row {
	flex-direction: row !important;
}
.flex-column {
	flex-direction: column !important;
}
.flex-row-reverse {
	flex-direction: row-reverse !important;
}
.flex-column-reverse {
	flex-direction: column-reverse !important;
}
.flex-grow-0 {
	flex-grow: 0 !important;
}
.flex-grow-1 {
	flex-grow: 1 !important;
}
.flex-shrink-0 {
	flex-shrink: 0 !important;
}
.flex-shrink-1 {
	flex-shrink: 1 !important;
}
.flex-wrap {
	flex-wrap: wrap !important;
}
.flex-nowrap {
	flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
	flex-wrap: wrap-reverse !important;
}
.gap-0 {
	gap: 0 !important;
}
.gap-1 {
	gap: 0.25rem !important;
}
.gap-2 {
	gap: 0.5rem !important;
}
.gap-3 {
	gap: 1rem !important;
}
.gap-4 {
	gap: 1.5rem !important;
}
.gap-5 {
	gap: 3rem !important;
}
.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-content-evenly {
	justify-content: space-evenly !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;
}
.order-first {
	order: -1 !important;
}
.order-0 {
	order: 0 !important;
}
.order-1 {
	order: 1 !important;
}
.order-2 {
	order: 2 !important;
}
.order-3 {
	order: 3 !important;
}
.order-4 {
	order: 4 !important;
}
.order-5 {
	order: 5 !important;
}
.order-last {
	order: 6 !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;
}
.m-auto {
	margin: auto !important;
}
.mx-0 {
	margin-right: 0 !important;
	margin-left: 0 !important;
}
.mx-1 {
	margin-right: 0.25rem !important;
	margin-left: 0.25rem !important;
}
.mx-2 {
	margin-right: 0.5rem !important;
	margin-left: 0.5rem !important;
}
.mx-3 {
	margin-right: 1rem !important;
	margin-left: 1rem !important;
}
.mx-4 {
	margin-right: 1.5rem !important;
	margin-left: 1.5rem !important;
}
.mx-5 {
	margin-right: 3rem !important;
	margin-left: 3rem !important;
}
.mx-auto {
	margin-right: auto !important;
	margin-left: auto !important;
}
.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.my-1 {
	margin-top: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}
.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.5rem !important;
}
.my-3 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}
.my-4 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}
.my-5 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}
.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mt-1 {
	margin-top: 0.25rem !important;
}
.mt-2 {
	margin-top: 0.5rem !important;
}
.mt-3 {
	margin-top: 1rem !important;
}
.mt-4 {
	margin-top: 1.5rem !important;
}
.mt-5 {
	margin-top: 3rem !important;
}
.mt-auto {
	margin-top: auto !important;
}
.me-0 {
	margin-right: 0 !important;
}
.me-1 {
	margin-right: 0.25rem !important;
}
.me-2 {
	margin-right: 0.5rem !important;
}
.me-3 {
	margin-right: 1rem !important;
}
.me-4 {
	margin-right: 1.5rem !important;
}
.me-5 {
	margin-right: 3rem !important;
}
.me-auto {
	margin-right: auto !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-1 {
	margin-bottom: 0.25rem !important;
}
.mb-2 {
	margin-bottom: 0.5rem !important;
}
.mb-3 {
	margin-bottom: 1rem !important;
}
.mb-4 {
	margin-bottom: 1.5rem !important;
}
.mb-5 {
	margin-bottom: 3rem !important;
}
.mb-auto {
	margin-bottom: auto !important;
}
.ms-0 {
	margin-left: 0 !important;
}
.ms-1 {
	margin-left: 0.25rem !important;
}
.ms-2 {
	margin-left: 0.5rem !important;
}
.ms-3 {
	margin-left: 1rem !important;
}
.ms-4 {
	margin-left: 1.5rem !important;
}
.ms-5 {
	margin-left: 3rem !important;
}
.ms-auto {
	margin-left: auto !important;
}
.p-0 {
	padding: 0 !important;
}
.p-1 {
	padding: 0.25rem !important;
}
.p-2 {
	padding: 0.5rem !important;
}
.p-3 {
	padding: 1rem !important;
}
.p-4 {
	padding: 1.5rem !important;
}
.p-5 {
	padding: 3rem !important;
}
.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}
.px-1 {
	padding-right: 0.25rem !important;
	padding-left: 0.25rem !important;
}
.px-2 {
	padding-right: 0.5rem !important;
	padding-left: 0.5rem !important;
}
.px-3 {
	padding-right: 1rem !important;
	padding-left: 1rem !important;
}
.px-4 {
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important;
}
.px-5 {
	padding-right: 3rem !important;
	padding-left: 3rem !important;
}
.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.py-1 {
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}
.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}
.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}
.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}
.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 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;
}
.pe-0 {
	padding-right: 0 !important;
}
.pe-1 {
	padding-right: 0.25rem !important;
}
.pe-2 {
	padding-right: 0.5rem !important;
}
.pe-3 {
	padding-right: 1rem !important;
}
.pe-4 {
	padding-right: 1.5rem !important;
}
.pe-5 {
	padding-right: 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;
}
.ps-0 {
	padding-left: 0 !important;
}
.ps-1 {
	padding-left: 0.25rem !important;
}
.ps-2 {
	padding-left: 0.5rem !important;
}
.ps-3 {
	padding-left: 1rem !important;
}
.ps-4 {
	padding-left: 1.5rem !important;
}
.ps-5 {
	padding-left: 3rem !important;
}
.fs-1 {
	font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
	font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
	font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
	font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
	font-size: 1.25rem !important;
}
.fs-6 {
	font-size: 1rem !important;
}
.fst-italic {
	font-style: italic !important;
}
.fst-normal {
	font-style: normal !important;
}
.fw-light {
	font-weight: 300 !important;
}
.fw-lighter {
	font-weight: lighter !important;
}
.fw-normal {
	font-weight: 400 !important;
}
.fw-bold {
	font-weight: 700 !important;
}
.fw-bolder {
	font-weight: bolder !important;
}
.text-lowercase {
	text-transform: lowercase !important;
}
.text-uppercase {
	text-transform: uppercase !important;
}
.text-capitalize {
	text-transform: capitalize !important;
}
.text-start {
	text-align: left !important;
}
.text-end {
	text-align: right !important;
}
.text-center {
	text-align: center !important;
}
.text-primary {
	color: #0d6efd !important;
}
.text-secondary {
	color: #6c757d !important;
}
.text-success {
	color: #198754 !important;
}
.text-info {
	color: #0dcaf0 !important;
}
.text-warning {
	color: #ffc107 !important;
}
.text-danger {
	color: #dc3545 !important;
}
.text-light {
	color: #f8f9fa !important;
}
.text-dark {
	color: #212529 !important;
}
.text-white {
	color: #fff !important;
}
.text-body {
	color: #212529 !important;
}
.text-muted {
	color: #6c757d !important;
}
.text-black-50 {
	color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
	color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
	color: inherit !important;
}
.lh-1 {
	line-height: 1 !important;
}
.lh-sm {
	line-height: 1.25 !important;
}
.lh-base {
	line-height: 1.5 !important;
}
.lh-lg {
	line-height: 2 !important;
}
.bg-primary {
	background-color: #0d6efd !important;
}
.bg-secondary {
	background-color: #6c757d !important;
}
.bg-success {
	background-color: #198754 !important;
}
.bg-info {
	background-color: #0dcaf0 !important;
}
.bg-warning {
	background-color: #ffc107 !important;
}
.bg-danger {
	background-color: #dc3545 !important;
}
.bg-light {
	background-color: #f8f9fa !important;
}
.bg-dark {
	background-color: #212529 !important;
}
.bg-body {
	background-color: #fff !important;
}
.bg-white {
	background-color: #fff !important;
}
.bg-transparent {
	background-color: transparent !important;
}
.bg-gradient {
	background-image: var(--bs-gradient) !important;
}
.text-wrap {
	white-space: normal !important;
}
.text-nowrap {
	white-space: nowrap !important;
}
.text-decoration-none {
	text-decoration: none !important;
}
.text-decoration-underline {
	text-decoration: underline !important;
}
.text-decoration-line-through {
	text-decoration: line-through !important;
}
.text-break {
	word-wrap: break-word !important;
	word-break: break-word !important;
}
.font-monospace {
	font-family: var(--bs-font-monospace) !important;
}
.user-select-all {
	-webkit-user-select: all !important;
	-moz-user-select: all !important;
	user-select: all !important;
}
.user-select-auto {
	-webkit-user-select: auto !important;
	-moz-user-select: auto !important;
	user-select: auto !important;
}
.user-select-none {
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	user-select: none !important;
}
.pe-none {
	pointer-events: none !important;
}
.pe-auto {
	pointer-events: auto !important;
}
.rounded {
	border-radius: 0.25rem !important;
}
.rounded-0 {
	border-radius: 0 !important;
}
.rounded-1 {
	border-radius: 0.2rem !important;
}
.rounded-2 {
	border-radius: 0.25rem !important;
}
.rounded-3 {
	border-radius: 0.3rem !important;
}
.rounded-circle {
	border-radius: 50% !important;
}
.rounded-pill {
	border-radius: 50rem !important;
}
.rounded-top {
	border-top-left-radius: 0.25rem !important;
	border-top-right-radius: 0.25rem !important;
}
.rounded-end {
	border-top-right-radius: 0.25rem !important;
	border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
	border-bottom-right-radius: 0.25rem !important;
	border-bottom-left-radius: 0.25rem !important;
}
.rounded-start {
	border-bottom-left-radius: 0.25rem !important;
	border-top-left-radius: 0.25rem !important;
}
.visible {
	visibility: visible !important;
}
.invisible {
	visibility: hidden !important;
}
@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;
	}
}
@media (min-width: 1200px) {
	.fs-1 {
		font-size: 2.5rem !important;
	}
	.fs-2 {
		font-size: 2rem !important;
	}
	.fs-3 {
		font-size: 1.75rem !important;
	}
	.fs-4 {
		font-size: 1.5rem !important;
	}
}
@media print {
	.d-print-inline {
		display: inline !important;
	}
	.d-print-inline-block {
		display: inline-block !important;
	}
	.d-print-block {
		display: block !important;
	}
	.d-print-grid {
		display: grid !important;
	}
	.d-print-table {
		display: table !important;
	}
	.d-print-table-row {
		display: table-row !important;
	}
	.d-print-table-cell {
		display: table-cell !important;
	}
	.d-print-flex {
		display: flex !important;
	}
	.d-print-inline-flex {
		display: inline-flex !important;
	}
	.d-print-none {
		display: none !important;
	}
}
@font-face {
	font-family: uicons-regular-rounded;
	src: url("../../assets/fonts/uicons/uicons-regular-rounded.eot#iefix")
			format("embedded-opentype"),
		url("../../assets/fonts/uicons/uicons-regular-rounded.woff2")
			format("woff2"),
		url("../../assets/fonts/uicons/uicons-regular-rounded.woff") format("woff");
}
i[class^="fi-rr-"],
span[class^="fi-rr-"] {
	line-height: 0 !important;
}
i[class*=" fi-rr-"]:before,
i[class^="fi-rr-"]:before,
span[class*="fi-rr-"]:before,
span[class^="fi-rr-"]:before {
	font-family: uicons-regular-rounded !important;
	font-style: normal;
	font-weight: 400 !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.fi-rr-add:before {
	content: "\f101";
}
.fi-rr-address-book:before {
	content: "\f102";
}
.fi-rr-alarm-clock:before {
	content: "\f103";
}
.fi-rr-align-center:before {
	content: "\f104";
}
.fi-rr-align-justify:before {
	content: "\f105";
}
.fi-rr-align-left:before {
	content: "\f106";
}
.fi-rr-align-right:before {
	content: "\f107";
}
.fi-rr-ambulance:before {
	content: "\f108";
}
.fi-rr-angle-double-left:before {
	content: "\f109";
}
.fi-rr-angle-double-right:before {
	content: "\f10a";
}
.fi-rr-angle-double-small-left:before {
	content: "\f10b";
}
.fi-rr-angle-double-small-right:before {
	content: "\f10c";
}
.fi-rr-angle-down:before {
	content: "\f10d";
}
.fi-rr-angle-left:before {
	content: "\f10e";
}
.fi-rr-angle-right:before {
	content: "\f10f";
}
.fi-rr-angle-small-down:before {
	content: "\f110";
}
.fi-rr-angle-small-left:before {
	content: "\f111";
}
.fi-rr-angle-small-right:before {
	content: "\f112";
}
.fi-rr-angle-small-up:before {
	content: "\f113";
}
.fi-rr-angle-up:before {
	content: "\f114";
}
.fi-rr-apple:before {
	content: "\f115";
}
.fi-rr-apps-add:before {
	content: "\f116";
}
.fi-rr-apps-delete:before {
	content: "\f117";
}
.fi-rr-apps-sort:before {
	content: "\f118";
}
.fi-rr-apps:before {
	content: "\f119";
}
.fi-rr-archive:before {
	content: "\f11a";
}
.fi-rr-arrow-down:before {
	content: "\f11b";
}
.fi-rr-arrow-from-bottom:before {
	content: "\f11c";
}
.fi-rr-arrow-left:before {
	content: "\f11d";
}
.fi-rr-arrow-right:before {
	content: "\f11e";
}
.fi-rr-arrow-small-down:before {
	content: "\f11f";
}
.fi-rr-arrow-small-left:before {
	content: "\f120";
}
.fi-rr-arrow-small-right:before {
	content: "\f121";
}
.fi-rr-arrow-small-up:before {
	content: "\f122";
}
.fi-rr-arrow-up:before {
	content: "\f123";
}
.fi-rr-asterik:before {
	content: "\f124";
}
.fi-rr-at:before {
	content: "\f125";
}
.fi-rr-backpack:before {
	content: "\f126";
}
.fi-rr-badge:before {
	content: "\f127";
}
.fi-rr-balloons:before {
	content: "\f128";
}
.fi-rr-ban:before {
	content: "\f129";
}
.fi-rr-band-aid:before {
	content: "\f12a";
}
.fi-rr-bank:before {
	content: "\f12b";
}
.fi-rr-barber-shop:before {
	content: "\f12c";
}
.fi-rr-baseball:before {
	content: "\f12d";
}
.fi-rr-basketball:before {
	content: "\f12e";
}
.fi-rr-bed:before {
	content: "\f12f";
}
.fi-rr-beer:before {
	content: "\f130";
}
.fi-rr-bell-ring:before {
	content: "\f131";
}
.fi-rr-bell-school:before {
	content: "\f132";
}
.fi-rr-bell:before {
	content: "\f133";
}
.fi-rr-bike:before {
	content: "\f134";
}
.fi-rr-billiard:before {
	content: "\f135";
}
.fi-rr-bold:before {
	content: "\f136";
}
.fi-rr-book-alt:before {
	content: "\f137";
}
.fi-rr-book:before {
	content: "\f138";
}
.fi-rr-bookmark:before {
	content: "\f139";
}
.fi-rr-bowling:before {
	content: "\f13a";
}
.fi-rr-box-alt:before {
	content: "\f13b";
}
.fi-rr-box:before {
	content: "\f13c";
}
.fi-rr-bread-slice:before {
	content: "\f13d";
}
.fi-rr-briefcase:before {
	content: "\f13e";
}
.fi-rr-broom:before {
	content: "\f13f";
}
.fi-rr-browser:before {
	content: "\f140";
}
.fi-rr-brush:before {
	content: "\f141";
}
.fi-rr-bug:before {
	content: "\f142";
}
.fi-rr-building:before {
	content: "\f143";
}
.fi-rr-bulb:before {
	content: "\f144";
}
.fi-rr-butterfly:before {
	content: "\f145";
}
.fi-rr-cake-birthday:before {
	content: "\f146";
}
.fi-rr-cake-wedding:before {
	content: "\f147";
}
.fi-rr-calculator:before {
	content: "\f148";
}
.fi-rr-calendar:before {
	content: "\f149";
}
.fi-rr-call-history:before {
	content: "\f14a";
}
.fi-rr-call-incoming:before {
	content: "\f14b";
}
.fi-rr-call-missed:before {
	content: "\f14c";
}
.fi-rr-call-outgoing:before {
	content: "\f14d";
}
.fi-rr-camera:before {
	content: "\f14e";
}
.fi-rr-camping:before {
	content: "\f14f";
}
.fi-rr-car:before {
	content: "\f150";
}
.fi-rr-caret-down:before {
	content: "\f151";
}
.fi-rr-caret-left:before {
	content: "\f152";
}
.fi-rr-caret-right:before {
	content: "\f153";
}
.fi-rr-caret-up:before {
	content: "\f154";
}
.fi-rr-carrot:before {
	content: "\f155";
}
.fi-rr-chart-connected:before {
	content: "\f156";
}
.fi-rr-chart-histogram:before {
	content: "\f157";
}
.fi-rr-chart-network:before {
	content: "\f158";
}
.fi-rr-chart-pie-alt:before {
	content: "\f159";
}
.fi-rr-chart-pie:before {
	content: "\f15a";
}
.fi-rr-chart-pyramid:before {
	content: "\f15b";
}
.fi-rr-chart-set-theory:before {
	content: "\f15c";
}
.fi-rr-chart-tree:before {
	content: "\f15d";
}
.fi-rr-chat-arrow-down:before {
	content: "\f15e";
}
.fi-rr-chat-arrow-grow:before {
	content: "\f15f";
}
.fi-rr-check:before {
	content: "\f160";
}
.fi-rr-checkbox:before {
	content: "\f161";
}
.fi-rr-cheese:before {
	content: "\f162";
}
.fi-rr-chess-piece:before {
	content: "\f163";
}
.fi-rr-child-head:before {
	content: "\f164";
}
.fi-rr-circle-small:before {
	content: "\f165";
}
.fi-rr-circle:before {
	content: "\f166";
}
.fi-rr-clip:before {
	content: "\f167";
}
.fi-rr-clock:before {
	content: "\f168";
}
.fi-rr-cloud-check:before {
	content: "\f169";
}
.fi-rr-cloud-disabled:before {
	content: "\f16a";
}
.fi-rr-cloud-download:before {
	content: "\f16b";
}
.fi-rr-cloud-share:before {
	content: "\f16c";
}
.fi-rr-cloud-upload:before {
	content: "\f16d";
}
.fi-rr-cloud:before {
	content: "\f16e";
}
.fi-rr-clouds:before {
	content: "\f16f";
}
.fi-rr-cocktail:before {
	content: "\f170";
}
.fi-rr-coffee:before {
	content: "\f171";
}
.fi-rr-comment-alt:before {
	content: "\f172";
}
.fi-rr-comment-check:before {
	content: "\f173";
}
.fi-rr-comment-heart:before {
	content: "\f174";
}
.fi-rr-comment-info:before {
	content: "\f175";
}
.fi-rr-comment-user:before {
	content: "\f176";
}
.fi-rr-comment:before {
	content: "\f177";
}
.fi-rr-comments:before {
	content: "\f178";
}
.fi-rr-compress-alt:before {
	content: "\f179";
}
.fi-rr-compress:before {
	content: "\f17a";
}
.fi-rr-computer:before {
	content: "\f17b";
}
.fi-rr-confetti:before {
	content: "\f17c";
}
.fi-rr-cookie:before {
	content: "\f17d";
}
.fi-rr-copy-alt:before {
	content: "\f17e";
}
.fi-rr-copy:before {
	content: "\f17f";
}
.fi-rr-copyright:before {
	content: "\f180";
}
.fi-rr-cow:before {
	content: "\f181";
}
.fi-rr-cream:before {
	content: "\f182";
}
.fi-rr-credit-card:before {
	content: "\f183";
}
.fi-rr-croissant:before {
	content: "\f184";
}
.fi-rr-cross-circle:before {
	content: "\f185";
}
.fi-rr-cross-small:before {
	content: "\f186";
}
.fi-rr-cross:before {
	content: "\f187";
}
.fi-rr-crown:before {
	content: "\f188";
}
.fi-rr-cube:before {
	content: "\f189";
}
.fi-rr-cupcake:before {
	content: "\f18a";
}
.fi-rr-cursor-finger:before {
	content: "\f18b";
}
.fi-rr-cursor-plus:before {
	content: "\f18c";
}
.fi-rr-cursor-text-alt:before {
	content: "\f18d";
}
.fi-rr-cursor-text:before {
	content: "\f18e";
}
.fi-rr-cursor:before {
	content: "\f18f";
}
.fi-rr-dart:before {
	content: "\f190";
}
.fi-rr-dashboard:before {
	content: "\f191";
}
.fi-rr-data-transfer:before {
	content: "\f192";
}
.fi-rr-database:before {
	content: "\f193";
}
.fi-rr-delete:before {
	content: "\f194";
}
.fi-rr-diamond:before {
	content: "\f195";
}
.fi-rr-dice:before {
	content: "\f196";
}
.fi-rr-diploma:before {
	content: "\f197";
}
.fi-rr-disco-ball:before {
	content: "\f198";
}
.fi-rr-disk:before {
	content: "\f199";
}
.fi-rr-doctor:before {
	content: "\f19a";
}
.fi-rr-document-signed:before {
	content: "\f19b";
}
.fi-rr-document:before {
	content: "\f19c";
}
.fi-rr-dollar:before {
	content: "\f19d";
}
.fi-rr-download:before {
	content: "\f19e";
}
.fi-rr-drink-alt:before {
	content: "\f19f";
}
.fi-rr-drumstick:before {
	content: "\f1a0";
}
.fi-rr-duplicate:before {
	content: "\f1a1";
}
.fi-rr-e-learning:before {
	content: "\f1a2";
}
.fi-rr-earnings:before {
	content: "\f1a3";
}
.fi-rr-edit-alt:before {
	content: "\f1a4";
}
.fi-rr-edit:before {
	content: "\f1a5";
}
.fi-rr-envelope-ban:before {
	content: "\f1a6";
}
.fi-rr-envelope-download:before {
	content: "\f1a7";
}
.fi-rr-envelope-marker:before {
	content: "\f1a8";
}
.fi-rr-envelope-open:before {
	content: "\f1a9";
}
.fi-rr-envelope-plus:before {
	content: "\f1aa";
}
.fi-rr-envelope:before {
	content: "\f1ab";
}
.fi-rr-euro:before {
	content: "\f1ac";
}
.fi-rr-exclamation:before {
	content: "\f1ad";
}
.fi-rr-expand:before {
	content: "\f1ae";
}
.fi-rr-eye-crossed:before {
	content: "\f1af";
}
.fi-rr-eye-dropper:before {
	content: "\f1b0";
}
.fi-rr-eye:before {
	content: "\f1b1";
}
.fi-rr-feather:before {
	content: "\f1b2";
}
.fi-rr-ferris-wheel:before {
	content: "\f1b3";
}
.fi-rr-file-add:before {
	content: "\f1b4";
}
.fi-rr-file-ai:before {
	content: "\f1b5";
}
.fi-rr-file-check:before {
	content: "\f1b6";
}
.fi-rr-file-delete:before {
	content: "\f1b7";
}
.fi-rr-file-eps:before {
	content: "\f1b8";
}
.fi-rr-file-gif:before {
	content: "\f1b9";
}
.fi-rr-file-music:before {
	content: "\f1ba";
}
.fi-rr-file-psd:before {
	content: "\f1bb";
}
.fi-rr-file:before {
	content: "\f1bc";
}
.fi-rr-fill:before {
	content: "\f1bd";
}
.fi-rr-film:before {
	content: "\f1be";
}
.fi-rr-filter:before {
	content: "\f1bf";
}
.fi-rr-fingerprint:before {
	content: "\f1c0";
}
.fi-rr-fish:before {
	content: "\f1c1";
}
.fi-rr-flag:before {
	content: "\f1c2";
}
.fi-rr-flame:before {
	content: "\f1c3";
}
.fi-rr-flip-horizontal:before {
	content: "\f1c4";
}
.fi-rr-flower-bouquet:before {
	content: "\f1c5";
}
.fi-rr-flower-tulip:before {
	content: "\f1c6";
}
.fi-rr-flower:before {
	content: "\f1c7";
}
.fi-rr-folder-add:before {
	content: "\f1c8";
}
.fi-rr-folder:before {
	content: "\f1c9";
}
.fi-rr-following:before {
	content: "\f1ca";
}
.fi-rr-football:before {
	content: "\f1cb";
}
.fi-rr-form:before {
	content: "\f1cc";
}
.fi-rr-forward:before {
	content: "\f1cd";
}
.fi-rr-fox:before {
	content: "\f1ce";
}
.fi-rr-frown:before {
	content: "\f1cf";
}
.fi-rr-ftp:before {
	content: "\f1d0";
}
.fi-rr-gallery:before {
	content: "\f1d1";
}
.fi-rr-gamepad:before {
	content: "\f1d2";
}
.fi-rr-gas-pump:before {
	content: "\f1d3";
}
.fi-rr-gem:before {
	content: "\f1d4";
}
.fi-rr-gift:before {
	content: "\f1d5";
}
.fi-rr-glass-cheers:before {
	content: "\f1d6";
}
.fi-rr-glasses:before {
	content: "\f1d7";
}
.fi-rr-globe-alt:before {
	content: "\f1d8";
}
.fi-rr-globe:before {
	content: "\f1d9";
}
.fi-rr-golf:before {
	content: "\f1da";
}
.fi-rr-graduation-cap:before {
	content: "\f1db";
}
.fi-rr-graphic-tablet:before {
	content: "\f1dc";
}
.fi-rr-grid-alt:before {
	content: "\f1dd";
}
.fi-rr-grid:before {
	content: "\f1de";
}
.fi-rr-guitar:before {
	content: "\f1df";
}
.fi-rr-gym:before {
	content: "\f1e0";
}
.fi-rr-hamburger:before {
	content: "\f1e1";
}
.fi-rr-hand-holding-heart:before {
	content: "\f1e2";
}
.fi-rr-hastag:before {
	content: "\f1e3";
}
.fi-rr-hat-birthday:before {
	content: "\f1e4";
}
.fi-rr-head-side-thinking:before {
	content: "\f1e5";
}
.fi-rr-headphones:before {
	content: "\f1e6";
}
.fi-rr-headset:before {
	content: "\f1e7";
}
.fi-rr-heart-arrow:before {
	content: "\f1e8";
}
.fi-rr-heart:before {
	content: "\f1e9";
}
.fi-rr-home-location-alt:before {
	content: "\f1ea";
}
.fi-rr-home-location:before {
	content: "\f1eb";
}
.fi-rr-home:before {
	content: "\f1ec";
}
.fi-rr-hourglass-end:before {
	content: "\f1ed";
}
.fi-rr-hourglass:before {
	content: "\f1ee";
}
.fi-rr-ice-cream:before {
	content: "\f1ef";
}
.fi-rr-ice-skate:before {
	content: "\f1f0";
}
.fi-rr-id-badge:before {
	content: "\f1f1";
}
.fi-rr-inbox:before {
	content: "\f1f2";
}
.fi-rr-incognito:before {
	content: "\f1f3";
}
.fi-rr-indent:before {
	content: "\f1f4";
}
.fi-rr-infinity:before {
	content: "\f1f5";
}
.fi-rr-info:before {
	content: "\f1f6";
}
.fi-rr-interactive:before {
	content: "\f1f7";
}
.fi-rr-interlining:before {
	content: "\f1f8";
}
.fi-rr-interrogation:before {
	content: "\f1f9";
}
.fi-rr-italic:before {
	content: "\f1fa";
}
.fi-rr-jpg:before {
	content: "\f1fb";
}
.fi-rr-key:before {
	content: "\f1fc";
}
.fi-rr-keyboard:before {
	content: "\f1fd";
}
.fi-rr-kite:before {
	content: "\f1fe";
}
.fi-rr-label:before {
	content: "\f1ff";
}
.fi-rr-laptop:before {
	content: "\f200";
}
.fi-rr-lasso:before {
	content: "\f201";
}
.fi-rr-laugh:before {
	content: "\f202";
}
.fi-rr-layers:before {
	content: "\f203";
}
.fi-rr-layout-fluid:before {
	content: "\f204";
}
.fi-rr-leaf:before {
	content: "\f205";
}
.fi-rr-letter-case:before {
	content: "\f206";
}
.fi-rr-life-ring:before {
	content: "\f207";
}
.fi-rr-line-width:before {
	content: "\f208";
}
.fi-rr-link:before {
	content: "\f209";
}
.fi-rr-lipstick:before {
	content: "\f20a";
}
.fi-rr-list-check:before {
	content: "\f20b";
}
.fi-rr-list:before {
	content: "\f20c";
}
.fi-rr-location-alt:before {
	content: "\f20d";
}
.fi-rr-lock-alt:before {
	content: "\f20e";
}
.fi-rr-lock:before {
	content: "\f20f";
}
.fi-rr-luggage-rolling:before {
	content: "\f210";
}
.fi-rr-magic-wand:before {
	content: "\f211";
}
.fi-rr-makeup-brush:before {
	content: "\f212";
}
.fi-rr-man-head:before {
	content: "\f213";
}
.fi-rr-map-marker-cross:before {
	content: "\f214";
}
.fi-rr-map-marker-home:before {
	content: "\f215";
}
.fi-rr-map-marker-minus:before {
	content: "\f216";
}
.fi-rr-map-marker-plus:before {
	content: "\f217";
}
.fi-rr-map-marker:before {
	content: "\f218";
}
.fi-rr-map:before {
	content: "\f219";
}
.fi-rr-marker-time:before {
	content: "\f21a";
}
.fi-rr-marker:before {
	content: "\f21b";
}
.fi-rr-mars-double:before {
	content: "\f21c";
}
.fi-rr-mars:before {
	content: "\f21d";
}
.fi-rr-mask-carnival:before {
	content: "\f21e";
}
.fi-rr-medicine:before {
	content: "\f21f";
}
.fi-rr-megaphone:before {
	content: "\f220";
}
.fi-rr-meh:before {
	content: "\f221";
}
.fi-rr-menu-burger:before {
	content: "\f222";
}
.fi-rr-menu-dots-vertical:before {
	content: "\f223";
}
.fi-rr-menu-dots:before {
	content: "\f224";
}
.fi-rr-microphone-alt:before {
	content: "\f225";
}
.fi-rr-microphone:before {
	content: "\f226";
}
.fi-rr-minus-small:before {
	content: "\f227";
}
.fi-rr-minus:before {
	content: "\f228";
}
.fi-rr-mobile:before {
	content: "\f229";
}
.fi-rr-mode-landscape:before {
	content: "\f22a";
}
.fi-rr-mode-portrait:before {
	content: "\f22b";
}
.fi-rr-money:before {
	content: "\f22c";
}
.fi-rr-moon:before {
	content: "\f22d";
}
.fi-rr-mountains:before {
	content: "\f22e";
}
.fi-rr-mouse:before {
	content: "\f22f";
}
.fi-rr-mug-alt:before {
	content: "\f230";
}
.fi-rr-music-alt:before {
	content: "\f231";
}
.fi-rr-music:before {
	content: "\f232";
}
.fi-rr-navigation:before {
	content: "\f233";
}
.fi-rr-network-cloud:before {
	content: "\f234";
}
.fi-rr-network:before {
	content: "\f235";
}
.fi-rr-notebook:before {
	content: "\f236";
}
.fi-rr-opacity:before {
	content: "\f237";
}
.fi-rr-package:before {
	content: "\f238";
}
.fi-rr-paint-brush:before {
	content: "\f239";
}
.fi-rr-palette:before {
	content: "\f23a";
}
.fi-rr-paper-plane:before {
	content: "\f23b";
}
.fi-rr-password:before {
	content: "\f23c";
}
.fi-rr-pause:before {
	content: "\f23d";
}
.fi-rr-paw:before {
	content: "\f23e";
}
.fi-rr-pencil:before {
	content: "\f23f";
}
.fi-rr-pharmacy:before {
	content: "\f240";
}
.fi-rr-phone-call:before {
	content: "\f241";
}
.fi-rr-phone-cross:before {
	content: "\f242";
}
.fi-rr-phone-pause:before {
	content: "\f243";
}
.fi-rr-phone-slash:before {
	content: "\f244";
}
.fi-rr-physics:before {
	content: "\f245";
}
.fi-rr-picture:before {
	content: "\f246";
}
.fi-rr-ping-pong:before {
	content: "\f247";
}
.fi-rr-pizza-slice:before {
	content: "\f248";
}
.fi-rr-plane:before {
	content: "\f249";
}
.fi-rr-play-alt:before {
	content: "\f24a";
}
.fi-rr-play:before {
	content: "\f24b";
}
.fi-rr-playing-cards:before {
	content: "\f24c";
}
.fi-rr-plus-small:before {
	content: "\f24d";
}
.fi-rr-plus:before {
	content: "\f24e";
}
.fi-rr-poker-chip:before {
	content: "\f24f";
}
.fi-rr-portrait:before {
	content: "\f250";
}
.fi-rr-pound:before {
	content: "\f251";
}
.fi-rr-power:before {
	content: "\f252";
}
.fi-rr-presentation:before {
	content: "\f253";
}
.fi-rr-print:before {
	content: "\f254";
}
.fi-rr-protractor:before {
	content: "\f255";
}
.fi-rr-pulse:before {
	content: "\f256";
}
.fi-rr-pyramid:before {
	content: "\f257";
}
.fi-rr-quote-right:before {
	content: "\f258";
}
.fi-rr-rainbow:before {
	content: "\f259";
}
.fi-rr-raindrops:before {
	content: "\f25a";
}
.fi-rr-rec:before {
	content: "\f25b";
}
.fi-rr-receipt:before {
	content: "\f25c";
}
.fi-rr-record-vinyl:before {
	content: "\f25d";
}
.fi-rr-rectabgle-vertical:before {
	content: "\f25e";
}
.fi-rr-rectangle-horizontal:before {
	content: "\f25f";
}
.fi-rr-rectangle-panoramic:before {
	content: "\f260";
}
.fi-rr-recycle:before {
	content: "\f261";
}
.fi-rr-redo-alt:before {
	content: "\f262";
}
.fi-rr-redo:before {
	content: "\f263";
}
.fi-rr-reflect:before {
	content: "\f264";
}
.fi-rr-refresh:before {
	content: "\f265";
}
.fi-rr-resize:before {
	content: "\f266";
}
.fi-rr-resources:before {
	content: "\f267";
}
.fi-rr-rewind:before {
	content: "\f268";
}
.fi-rr-rhombus:before {
	content: "\f269";
}
.fi-rr-rings-wedding:before {
	content: "\f26a";
}
.fi-rr-road:before {
	content: "\f26b";
}
.fi-rr-rocket:before {
	content: "\f26c";
}
.fi-rr-room-service:before {
	content: "\f26d";
}
.fi-rr-rotate-right:before {
	content: "\f26e";
}
.fi-rr-rugby:before {
	content: "\f26f";
}
.fi-rr-sad:before {
	content: "\f270";
}
.fi-rr-salad:before {
	content: "\f271";
}
.fi-rr-scale:before {
	content: "\f272";
}
.fi-rr-school-bus:before {
	content: "\f273";
}
.fi-rr-school:before {
	content: "\f274";
}
.fi-rr-scissors:before {
	content: "\f275";
}
.fi-rr-screen:before {
	content: "\f276";
}
.fi-rr-search-alt:before {
	content: "\f277";
}
.fi-rr-search-heart:before {
	content: "\f278";
}
.fi-rr-search:before {
	content: "\f279";
}
.fi-rr-settings-sliders:before {
	content: "\f27a";
}
.fi-rr-settings:before {
	content: "\f27b";
}
.fi-rr-share:before {
	content: "\f27c";
}
.fi-rr-shield-check:before {
	content: "\f27d";
}
.fi-rr-shield-exclamation:before {
	content: "\f27e";
}
.fi-rr-shield-interrogation:before {
	content: "\f27f";
}
.fi-rr-shield-plus:before {
	content: "\f280";
}
.fi-rr-shield:before {
	content: "\f281";
}
.fi-rr-ship-side:before {
	content: "\f282";
}
.fi-rr-ship:before {
	content: "\f283";
}
.fi-rr-shop:before {
	content: "\f284";
}
.fi-rr-shopping-bag-add:before {
	content: "\f285";
}
.fi-rr-shopping-bag:before {
	content: "\f286";
}
.fi-rr-shopping-cart-add:before {
	content: "\f287";
}
.fi-rr-shopping-cart-check:before {
	content: "\f288";
}
.fi-rr-shopping-cart:before {
	content: "\f289";
}
.fi-rr-shuffle:before {
	content: "\f28a";
}
.fi-rr-sign-in-alt:before {
	content: "\f28b";
}
.fi-rr-sign-in:before {
	content: "\f28c";
}
.fi-rr-sign-out-alt:before {
	content: "\f28d";
}
.fi-rr-sign-out:before {
	content: "\f28e";
}
.fi-rr-signal-alt-1:before {
	content: "\f28f";
}
.fi-rr-signal-alt-2:before {
	content: "\f290";
}
.fi-rr-signal-alt:before {
	content: "\f291";
}
.fi-rr-skateboard:before {
	content: "\f292";
}
.fi-rr-smartphone:before {
	content: "\f293";
}
.fi-rr-smile-wink:before {
	content: "\f294";
}
.fi-rr-smile:before {
	content: "\f295";
}
.fi-rr-snowflake:before {
	content: "\f296";
}
.fi-rr-soap:before {
	content: "\f297";
}
.fi-rr-soup:before {
	content: "\f298";
}
.fi-rr-spa:before {
	content: "\f299";
}
.fi-rr-speaker:before {
	content: "\f29a";
}
.fi-rr-sphere:before {
	content: "\f29b";
}
.fi-rr-spinner-alt:before {
	content: "\f29c";
}
.fi-rr-spinner:before {
	content: "\f29d";
}
.fi-rr-square-root:before {
	content: "\f29e";
}
.fi-rr-square:before {
	content: "\f29f";
}
.fi-rr-star-octogram:before {
	content: "\f2a0";
}
.fi-rr-star:before {
	content: "\f2a1";
}
.fi-rr-stats:before {
	content: "\f2a2";
}
.fi-rr-stethoscope:before {
	content: "\f2a3";
}
.fi-rr-sticker:before {
	content: "\f2a4";
}
.fi-rr-stop:before {
	content: "\f2a5";
}
.fi-rr-stopwatch:before {
	content: "\f2a6";
}
.fi-rr-subtitles:before {
	content: "\f2a7";
}
.fi-rr-sun:before {
	content: "\f2a8";
}
.fi-rr-sunrise:before {
	content: "\f2a9";
}
.fi-rr-surfing:before {
	content: "\f2aa";
}
.fi-rr-sword:before {
	content: "\f2ab";
}
.fi-rr-syringe:before {
	content: "\f2ac";
}
.fi-rr-tablet:before {
	content: "\f2ad";
}
.fi-rr-target:before {
	content: "\f2ae";
}
.fi-rr-taxi:before {
	content: "\f2af";
}
.fi-rr-tennis:before {
	content: "\f2b0";
}
.fi-rr-terrace:before {
	content: "\f2b1";
}
.fi-rr-test-tube:before {
	content: "\f2b2";
}
.fi-rr-test:before {
	content: "\f2b3";
}
.fi-rr-text-check:before {
	content: "\f2b4";
}
.fi-rr-text:before {
	content: "\f2b5";
}
.fi-rr-thermometer-half:before {
	content: "\f2b6";
}
.fi-rr-thumbs-down:before {
	content: "\f2b7";
}
.fi-rr-thumbs-up:before {
	content: "\f2b8";
}
.fi-rr-thumbtack:before {
	content: "\f2b9";
}
.fi-rr-ticket:before {
	content: "\f2ba";
}
.fi-rr-time-add:before {
	content: "\f2bb";
}
.fi-rr-time-check:before {
	content: "\f2bc";
}
.fi-rr-time-delete:before {
	content: "\f2bd";
}
.fi-rr-time-fast:before {
	content: "\f2be";
}
.fi-rr-time-forward-sixty:before {
	content: "\f2bf";
}
.fi-rr-time-forward-ten:before {
	content: "\f2c0";
}
.fi-rr-time-forward:before {
	content: "\f2c1";
}
.fi-rr-time-half-past:before {
	content: "\f2c2";
}
.fi-rr-time-oclock:before {
	content: "\f2c3";
}
.fi-rr-time-past:before {
	content: "\f2c4";
}
.fi-rr-time-quarter-past:before {
	content: "\f2c5";
}
.fi-rr-time-quarter-to:before {
	content: "\f2c6";
}
.fi-rr-time-twenty-four:before {
	content: "\f2c7";
}
.fi-rr-tool-crop:before {
	content: "\f2c8";
}
.fi-rr-tool-marquee:before {
	content: "\f2c9";
}
.fi-rr-tooth:before {
	content: "\f2ca";
}
.fi-rr-tornado:before {
	content: "\f2cb";
}
.fi-rr-train-side:before {
	content: "\f2cc";
}
.fi-rr-train:before {
	content: "\f2cd";
}
.fi-rr-transform:before {
	content: "\f2ce";
}
.fi-rr-trash:before {
	content: "\f2cf";
}
.fi-rr-treatment:before {
	content: "\f2d0";
}
.fi-rr-tree-christmas:before {
	content: "\f2d1";
}
.fi-rr-tree:before {
	content: "\f2d2";
}
.fi-rr-triangle:before {
	content: "\f2d3";
}
.fi-rr-trophy:before {
	content: "\f2d4";
}
.fi-rr-truck-side:before {
	content: "\f2d5";
}
.fi-rr-umbrella:before {
	content: "\f2d6";
}
.fi-rr-underline:before {
	content: "\f2d7";
}
.fi-rr-undo-alt:before {
	content: "\f2d8";
}
.fi-rr-undo:before {
	content: "\f2d9";
}
.fi-rr-unlock:before {
	content: "\f2da";
}
.fi-rr-upload:before {
	content: "\f2db";
}
.fi-rr-usb-pendrive:before {
	content: "\f2dc";
}
.fi-rr-user-add:before {
	content: "\f2dd";
}
.fi-rr-user-delete:before {
	content: "\f2de";
}
.fi-rr-user-remove:before {
	content: "\f2df";
}
.fi-rr-user-time:before {
	content: "\f2e0";
}
.fi-rr-user:before {
	content: "\f2e1";
}
.fi-rr-utensils:before {
	content: "\f2e2";
}
.fi-rr-vector-alt:before {
	content: "\f2e3";
}
.fi-rr-vector:before {
	content: "\f2e4";
}
.fi-rr-venus-double:before {
	content: "\f2e5";
}
.fi-rr-venus-mars:before {
	content: "\f2e6";
}
.fi-rr-venus:before {
	content: "\f2e7";
}
.fi-rr-video-camera:before {
	content: "\f2e8";
}
.fi-rr-volleyball:before {
	content: "\f2e9";
}
.fi-rr-volume:before {
	content: "\f2ea";
}
.fi-rr-wheelchair:before {
	content: "\f2eb";
}
.fi-rr-wifi-alt:before {
	content: "\f2ec";
}
.fi-rr-wind:before {
	content: "\f2ed";
}
.fi-rr-woman-head:before {
	content: "\f2ee";
}
.fi-rr-world:before {
	content: "\f2ef";
}
.fi-rr-yen:before {
	content: "\f2f0";
}
.fi-rr-zoom-in:before {
	content: "\f2f1";
}
.fi-rr-zoom-out:before {
	content: "\f2f2";
}
@font-face {
	font-family: swiper-icons;
	src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
		format("woff");
	font-weight: 400;
	font-style: normal;
}
:root {
	--swiper-theme-color: #007aff;
}
.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
	flex-direction: column;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
	flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-container-pointer-events {
	touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
	touch-action: pan-x;
}
.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}
.swiper-slide-invisible-blank {
	visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}
.swiper-container-3d {
	perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
	transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-container-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}
:root {
	--swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
	content: "prev";
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
	content: "next";
}
.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
	--swiper-navigation-color: #ffffff;
}
.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
	--swiper-navigation-color: #000000;
}
.swiper-button-lock {
	display: none;
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 0.3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: #000;
	opacity: 0.2;
}
button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}
.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}
.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: 0.2s transform, 0.2s top;
}
.swiper-container-horizontal
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 4px;
}
.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}
.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 0.2s transform, 0.2s left;
}
.swiper-container-horizontal.swiper-container-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}
.swiper-container-rtl
	.swiper-pagination-progressbar
	.swiper-pagination-progressbar-fill {
	transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}
.swiper-container-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}
.swiper-pagination-white {
	--swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
	--swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
	display: none;
}
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}
.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}
.swiper-scrollbar-cursor-drag {
	cursor: move;
}
.swiper-scrollbar-lock {
	display: none;
}
.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.swiper-slide-zoomed {
	cursor: move;
}
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	animation: swiper-preloader-spin 1s infinite linear;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}
.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-cube {
	overflow: visible;
}
.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
	transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	z-index: 0;
}
.swiper-container-cube .swiper-cube-shadow:before {
	content: "";
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px);
}
.swiper-container-flip {
	overflow: visible;
}
.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
} /*! Magnific Popup - v1.1.0 - 2016-02-20
* http://dimsemenov.com/plugins/magnific-popup/
* Copyright (c) 2016 Dmitry Semenov; */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}
.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: 0 !important;
	-webkit-backface-visibility: hidden;
}
.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}
.mfp-container:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
	display: none;
}
.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}
.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
	width: 100%;
	cursor: auto;
}
.mfp-ajax-cur {
	cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
	cursor: auto;
}
.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.mfp-loading.mfp-figure {
	display: none;
}
.mfp-hide {
	display: none !important;
}
.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}
.mfp-preloader a {
	color: #ccc;
}
.mfp-preloader a:hover {
	color: #fff;
}
.mfp-s-ready .mfp-preloader {
	display: none;
}
.mfp-s-error .mfp-content {
	display: none;
}
button.mfp-arrow,
button.mfp-close {
	overflow: visible;
	cursor: pointer;
	background: 0 0;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: 0;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #fff;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}
.mfp-close:focus,
.mfp-close:hover {
	opacity: 1;
}
.mfp-close:active {
	top: 1px;
}
.mfp-close-btn-in .mfp-close {
	color: #333;
}
.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}
.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ccc;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}
.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
	margin-top: -54px;
}
.mfp-arrow:focus,
.mfp-arrow:hover {
	opacity: 1;
}
.mfp-arrow:after,
.mfp-arrow:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}
.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}
.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}
.mfp-arrow-left {
	left: 0;
}
.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px;
}
.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
	right: 0;
}
.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px;
}
.mfp-arrow-right:before {
	border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
	top: -40px;
}
.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}
.mfp-figure {
	line-height: 0;
}
.mfp-figure:after {
	content: "";
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: $color-heading;
}
.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}
.mfp-figure figure {
	margin: 0;
}
.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}
.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
}
.mfp-image-holder .mfp-content {
	max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape),
	screen and (max-height: 300px) {
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}
@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}
.select2-container {
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle;
}
.select2-container .select2-selection--single {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	height: 28px;
	user-select: none;
	-webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	display: block;
	padding-left: 8px;
	padding-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
	position: relative;
}
.select2-container[dir="rtl"]
	.select2-selection--single
	.select2-selection__rendered {
	padding-right: 8px;
	padding-left: 20px;
}
.select2-container .select2-selection--multiple {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	min-height: 32px;
	user-select: none;
	-webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline-block;
	overflow: hidden;
	padding-left: 8px;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.select2-container .select2-search--inline {
	float: left;
}
.select2-container .select2-search--inline .select2-search__field {
	box-sizing: border-box;
	border: none;
	font-size: 100%;
	margin-top: 5px;
	padding: 0;
}
.select2-container
	.select2-search--inline
	.select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
.select2-dropdown {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051;
}
.select2-results {
	display: block;
}
.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0;
}
.select2-results__option {
	padding: 6px;
	user-select: none;
	-webkit-user-select: none;
}
.select2-results__option[aria-selected] {
	cursor: pointer;
}
.select2-container--open .select2-dropdown {
	left: 0;
}
.select2-container--open .select2-dropdown--above {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.select2-search--dropdown {
	display: block;
	padding: 4px;
}
.select2-search--dropdown .select2-search__field {
	padding: 4px;
	width: 100%;
	box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
	display: none;
}
.select2-close-mask {
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff;
}
.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	color: #1f2938;
	line-height: 28px;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__placeholder {
	color: #999;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow {
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	border-color: #bbb transparent transparent transparent;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0;
}
.select2-container--default[dir="rtl"]
	.select2-selection--single
	.select2-selection__clear {
	float: left;
}
.select2-container--default[dir="rtl"]
	.select2-selection--single
	.select2-selection__arrow {
	left: 1px;
	right: auto;
}
.select2-container--default.select2-container--disabled
	.select2-selection--single {
	background-color: #e5e5e5;
	cursor: default;
}
.select2-container--default.select2-container--disabled
	.select2-selection--single
	.select2-selection__clear {
	display: none;
}
.select2-container--default.select2-container--open
	.select2-selection--single
	.select2-selection__arrow
	b {
	border-color: transparent transparent #bbb transparent;
	border-width: 0 5px 6px 5px;
}
.select2-container--default .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__rendered {
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0 5px;
	width: 100%;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__rendered
	li {
	list-style: none;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__placeholder {
	color: #999;
	margin-top: 5px;
	float: left;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
	margin-top: 5px;
	margin-right: 10px;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove {
	color: #999;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	margin-right: 2px;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove:hover {
	color: #333;
}
.select2-container--default[dir="rtl"]
	.select2-selection--multiple
	.select2-search--inline,
.select2-container--default[dir="rtl"]
	.select2-selection--multiple
	.select2-selection__choice,
.select2-container--default[dir="rtl"]
	.select2-selection--multiple
	.select2-selection__placeholder {
	float: right;
}
.select2-container--default[dir="rtl"]
	.select2-selection--multiple
	.select2-selection__choice {
	margin-left: 5px;
	margin-right: auto;
}
.select2-container--default[dir="rtl"]
	.select2-selection--multiple
	.select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto;
}
.select2-container--default.select2-container--focus
	.select2-selection--multiple {
	border: solid #000 1px;
	outline: 0;
}
.select2-container--default.select2-container--disabled
	.select2-selection--multiple {
	background-color: #e5e5e5;
	cursor: default;
}
.select2-container--default.select2-container--disabled
	.select2-selection__choice__remove {
	display: none;
}
.select2-container--default.select2-container--open.select2-container--above
	.select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above
	.select2-selection--single {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below
	.select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below
	.select2-selection--single {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
	background: 0 0;
	border: none;
	outline: 0;
	box-shadow: none;
	-webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}
.select2-container--default .select2-results__option[role="group"] {
	padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled="true"] {
	color: #999;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
	background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__group {
	padding-left: 0;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -1em;
	padding-left: 2em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -2em;
	padding-left: 3em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -3em;
	padding-left: 4em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -4em;
	padding-left: 5em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -5em;
	padding-left: 6em;
}
.select2-container--default
	.select2-results__option--highlighted[aria-selected] {
	background-color: #cbbcfb;
	color: #1f2938;
}
.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}
.select2-container,
.select2-dropdown,
.select2-results,
.select2-search {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: 0;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:after,
.slick-track:before {
	display: table;
	content: "";
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir="rtl"] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
} /*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:after,
.ui-helper-clearfix:before {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: Alpha(Opacity=0);
}
.ui-front {
	z-index: 100;
}
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}
.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: 0.5em 0.5em 0.5em 0.7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px 0.4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-active,
.ui-menu .ui-state-focus {
	margin: -1px;
}
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0.2em;
	margin: auto 0;
}
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-button {
	padding: 0.4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: 0.1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: visible;
}
.ui-button,
.ui-button:active,
.ui-button:hover,
.ui-button:link,
.ui-button:visited {
	text-decoration: none;
}
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}
.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;
}
input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: 0.4em 1em;
}
button.ui-button::-moz-focus-inner,
input.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus,
.ui-controlgroup > .ui-controlgroup-item:focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: 0.4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}
.ui-controlgroup-vertical .ui-spinner-input {
	width: 75%;
	width: calc(100% - 2.4em);
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}
.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: 0.12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: 0.2em 0.2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: 0.9em;
	border-collapse: collapse;
	margin: 0 0 0.4em;
}
.ui-datepicker th {
	padding: 0.7em 0.3em;
	text-align: center;
	font-weight: 700;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td a,
.ui-datepicker td span {
	display: block;
	padding: 0.2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: 0.7em 0 0 0;
	padding: 0 0.2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: 0.5em 0.2em 0.4em;
	cursor: pointer;
	padding: 0.2em 0.6em 0.3em 0.6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: 0.5em;
	top: 0.3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: 0.4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: 0.1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: 0.3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: 0.5em 1em;
	background: 0 0;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: 0.5em;
	padding: 0.3em 1em 0.5em 0.4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: 0.5em 0.4em 0.5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw,
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted #000;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: 700;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: 0.7em;
	display: block;
	border: 0;
	background-position: 0 0;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}
.ui-slider-horizontal {
	height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -0.3em;
	margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}
.ui-slider-vertical {
	width: 0.8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -0.3em;
	margin-left: 0;
	margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: 0 0;
	color: inherit;
	padding: 0.222em 0;
	margin: 0.2em 0;
	vertical-align: middle;
	margin-left: 0.4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: 0.5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
.ui-tabs {
	position: relative;
	padding: 0.2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: 0.2em 0.2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px 0.2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: 0.5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: 0 0;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
.ui-widget {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget button,
.ui-widget input,
.ui-widget select,
.ui-widget textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget-content {
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
}
.ui-widget-content a {
	color: #333;
}
.ui-widget-header {
	border: 1px solid #ddd;
	background: #e9e9e9;
	color: #333;
	font-weight: 700;
}
.ui-widget-header a {
	color: #333;
}
.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: 400;
	color: #454545;
}
.ui-button,
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button {
	color: #454545;
	text-decoration: none;
}
.ui-button:focus,
.ui-button:hover,
.ui-state-focus,
.ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-focus,
.ui-widget-header .ui-state-hover {
	border: 1px solid #ccc;
	background: #ededed;
	font-weight: 400;
	color: #2b2b2b;
}
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
a.ui-button:focus,
a.ui-button:hover {
	color: #2b2b2b;
	text-decoration: none;
}
.ui-visual-focus {
	box-shadow: 0 0 3px 1px #5e9ed6;
}
.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: 400;
	color: #fff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #fff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #fff;
	text-decoration: none;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620;
}
.ui-state-checked {
	border: 1px solid #dad55e;
	background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: 700;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: 0.7;
	filter: Alpha(Opacity=70);
	font-weight: 400;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: 0.35;
	filter: Alpha(Opacity=35);
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter: Alpha(Opacity=35);
}
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("images/ui-icons_444444_256x240.html");
}
.ui-widget-header .ui-icon {
	background-image: url("images/ui-icons_444444_256x240.html");
}
.ui-button:focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-state-hover .ui-icon {
	background-image: url("images/ui-icons_555555_256x240.html");
}
.ui-button:active .ui-icon,
.ui-state-active .ui-icon {
	background-image: url("images/ui-icons_ffffff_256x240.html");
}
.ui-button .ui-state-highlight.ui-icon,
.ui-state-highlight .ui-icon {
	background-image: url("images/ui-icons_777620_256x240.html");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("images/ui-icons_cc0000_256x240.html");
}
.ui-button .ui-icon {
	background-image: url("images/ui-icons_777777_256x240.html");
}
.ui-icon-blank {
	background-position: 16px 16px;
}
.ui-icon-caret-1-n {
	background-position: 0 0;
}
.ui-icon-caret-1-ne {
	background-position: -16px 0;
}
.ui-icon-caret-1-e {
	background-position: -32px 0;
}
.ui-icon-caret-1-se {
	background-position: -48px 0;
}
.ui-icon-caret-1-s {
	background-position: -65px 0;
}
.ui-icon-caret-1-sw {
	background-position: -80px 0;
}
.ui-icon-caret-1-w {
	background-position: -96px 0;
}
.ui-icon-caret-1-nw {
	background-position: -112px 0;
}
.ui-icon-caret-2-n-s {
	background-position: -128px 0;
}
.ui-icon-caret-2-e-w {
	background-position: -144px 0;
}
.ui-icon-triangle-1-n {
	background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
	background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
	background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
	background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
	background-position: -65px -16px;
}
.ui-icon-triangle-1-sw {
	background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
	background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
	background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
	background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
	background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
	background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
	background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
	background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
	background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
	background-position: -65px -32px;
}
.ui-icon-arrow-1-sw {
	background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
	background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
	background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
	background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
	background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
	background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
	background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
	background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
	background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
	background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
	background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
	background-position: 1px -48px;
}
.ui-icon-arrowthick-1-ne {
	background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
	background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
	background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
	background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
	background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
	background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
	background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
	background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
	background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
	background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
	background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
	background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
	background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
	background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
	background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
	background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
	background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
	background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
	background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
	background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
	background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
	background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
	background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
	background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
	background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
	background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
	background-position: -176px -64px;
}
.ui-icon-arrow-4 {
	background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
	background-position: -16px -80px;
}
.ui-icon-extlink {
	background-position: -32px -80px;
}
.ui-icon-newwin {
	background-position: -48px -80px;
}
.ui-icon-refresh {
	background-position: -64px -80px;
}
.ui-icon-shuffle {
	background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
	background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
	background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
	background-position: 0 -96px;
}
.ui-icon-folder-open {
	background-position: -16px -96px;
}
.ui-icon-document {
	background-position: -32px -96px;
}
.ui-icon-document-b {
	background-position: -48px -96px;
}
.ui-icon-note {
	background-position: -64px -96px;
}
.ui-icon-mail-closed {
	background-position: -80px -96px;
}
.ui-icon-mail-open {
	background-position: -96px -96px;
}
.ui-icon-suitcase {
	background-position: -112px -96px;
}
.ui-icon-comment {
	background-position: -128px -96px;
}
.ui-icon-person {
	background-position: -144px -96px;
}
.ui-icon-print {
	background-position: -160px -96px;
}
.ui-icon-trash {
	background-position: -176px -96px;
}
.ui-icon-locked {
	background-position: -192px -96px;
}
.ui-icon-unlocked {
	background-position: -208px -96px;
}
.ui-icon-bookmark {
	background-position: -224px -96px;
}
.ui-icon-tag {
	background-position: -240px -96px;
}
.ui-icon-home {
	background-position: 0 -112px;
}
.ui-icon-flag {
	background-position: -16px -112px;
}
.ui-icon-calendar {
	background-position: -32px -112px;
}
.ui-icon-cart {
	background-position: -48px -112px;
}
.ui-icon-pencil {
	background-position: -64px -112px;
}
.ui-icon-clock {
	background-position: -80px -112px;
}
.ui-icon-disk {
	background-position: -96px -112px;
}
.ui-icon-calculator {
	background-position: -112px -112px;
}
.ui-icon-zoomin {
	background-position: -128px -112px;
}
.ui-icon-zoomout {
	background-position: -144px -112px;
}
.ui-icon-search {
	background-position: -160px -112px;
}
.ui-icon-wrench {
	background-position: -176px -112px;
}
.ui-icon-gear {
	background-position: -192px -112px;
}
.ui-icon-heart {
	background-position: -208px -112px;
}
.ui-icon-star {
	background-position: -224px -112px;
}
.ui-icon-link {
	background-position: -240px -112px;
}
.ui-icon-cancel {
	background-position: 0 -128px;
}
.ui-icon-plus {
	background-position: -16px -128px;
}
.ui-icon-plusthick {
	background-position: -32px -128px;
}
.ui-icon-minus {
	background-position: -48px -128px;
}
.ui-icon-minusthick {
	background-position: -64px -128px;
}
.ui-icon-close {
	background-position: -80px -128px;
}
.ui-icon-closethick {
	background-position: -96px -128px;
}
.ui-icon-key {
	background-position: -112px -128px;
}
.ui-icon-lightbulb {
	background-position: -128px -128px;
}
.ui-icon-scissors {
	background-position: -144px -128px;
}
.ui-icon-clipboard {
	background-position: -160px -128px;
}
.ui-icon-copy {
	background-position: -176px -128px;
}
.ui-icon-contact {
	background-position: -192px -128px;
}
.ui-icon-image {
	background-position: -208px -128px;
}
.ui-icon-video {
	background-position: -224px -128px;
}
.ui-icon-script {
	background-position: -240px -128px;
}
.ui-icon-alert {
	background-position: 0 -144px;
}
.ui-icon-info {
	background-position: -16px -144px;
}
.ui-icon-notice {
	background-position: -32px -144px;
}
.ui-icon-help {
	background-position: -48px -144px;
}
.ui-icon-check {
	background-position: -64px -144px;
}
.ui-icon-bullet {
	background-position: -80px -144px;
}
.ui-icon-radio-on {
	background-position: -96px -144px;
}
.ui-icon-radio-off {
	background-position: -112px -144px;
}
.ui-icon-pin-w {
	background-position: -128px -144px;
}
.ui-icon-pin-s {
	background-position: -144px -144px;
}
.ui-icon-play {
	background-position: 0 -160px;
}
.ui-icon-pause {
	background-position: -16px -160px;
}
.ui-icon-seek-next {
	background-position: -32px -160px;
}
.ui-icon-seek-prev {
	background-position: -48px -160px;
}
.ui-icon-seek-end {
	background-position: -64px -160px;
}
.ui-icon-seek-start {
	background-position: -80px -160px;
}
.ui-icon-seek-first {
	background-position: -80px -160px;
}
.ui-icon-stop {
	background-position: -96px -160px;
}
.ui-icon-eject {
	background-position: -112px -160px;
}
.ui-icon-volume-off {
	background-position: -128px -160px;
}
.ui-icon-volume-on {
	background-position: -144px -160px;
}
.ui-icon-power {
	background-position: 0 -176px;
}
.ui-icon-signal-diag {
	background-position: -16px -176px;
}
.ui-icon-signal {
	background-position: -32px -176px;
}
.ui-icon-battery-0 {
	background-position: -48px -176px;
}
.ui-icon-battery-1 {
	background-position: -64px -176px;
}
.ui-icon-battery-2 {
	background-position: -80px -176px;
}
.ui-icon-battery-3 {
	background-position: -96px -176px;
}
.ui-icon-circle-plus {
	background-position: 0 -192px;
}
.ui-icon-circle-minus {
	background-position: -16px -192px;
}
.ui-icon-circle-close {
	background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
	background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
	background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
	background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
	background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
	background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
	background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
	background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
	background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
	background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
	background-position: -192px -192px;
}
.ui-icon-circle-check {
	background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
	background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
	background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
	background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
	background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
	background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
	background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
	background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
	background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
	background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
	background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
	background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
	background-position: -80px -224px;
}
.ui-corner-all,
.ui-corner-left,
.ui-corner-tl,
.ui-corner-top {
	border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-right,
.ui-corner-top,
.ui-corner-tr {
	border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bl,
.ui-corner-bottom,
.ui-corner-left {
	border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-br,
.ui-corner-right {
	border-bottom-right-radius: 3px;
}
.ui-widget-overlay {
	background: #aaa;
	opacity: 0.003;
	filter: Alpha(Opacity=.3);
}
.ui-widget-shadow {
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
}
.ps {
	overflow: hidden !important;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;
}
.ps__rail-x {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	height: 15px;
	bottom: 0;
	position: absolute;
}
.ps__rail-y {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	width: 15px;
	right: 0;
	position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
	display: block;
	background-color: transparent;
}
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y,
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y {
	opacity: 0.6;
}
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-x:focus,
.ps .ps__rail-x:hover,
.ps .ps__rail-y.ps--clicking,
.ps .ps__rail-y:focus,
.ps .ps__rail-y:hover {
	background-color: #eee;
	opacity: 0.9;
}
.ps__thumb-x {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, height 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
	height: 6px;
	bottom: 2px;
	position: absolute;
}
.ps__thumb-y {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, width 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
	width: 6px;
	right: 2px;
	position: absolute;
}
.ps__rail-x.ps--clicking .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x:hover > .ps__thumb-x {
	background-color: #999;
	height: 11px;
}
.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y:hover > .ps__thumb-y {
	background-color: #999;
	width: 11px;
}
@supports (-ms-overflow-style: none) {
	.ps {
		overflow: auto !important;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.ps {
		overflow: auto !important;
	}
} /*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
	animation-duration: 1.25s;
	animation-fill-mode: both;
}
.animated.infinite {
	animation-iteration-count: infinite;
}
.animated.hinge {
	animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
	animation-duration: 0.75s;
}
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateZ(0);
	}
	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}
@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	animation-name: flash;
}
@keyframes pulse {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scaleX(1);
	}
}
.pulse {
	animation-name: pulse;
}
@keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		transform: scaleX(1);
	}
}
.rubberBand {
	animation-name: rubberBand;
}
@keyframes shake {
	0%,
	to {
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	animation-name: shake;
}
@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake;
}
@keyframes swing {
	20% {
		transform: rotate(15deg);
	}
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	to {
		transform: rotate(0);
	}
}
.swing {
	transform-origin: top center;
	animation-name: swing;
}
@keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
.tada {
	animation-name: tada;
}
@keyframes wobble {
	0% {
		transform: none;
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		transform: none;
	}
}
.wobble {
	animation-name: wobble;
}
@keyframes jello {
	0%,
	11.1%,
	to {
		transform: none;
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello {
	animation-name: jello;
	transform-origin: center;
}
@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
.bounceIn {
	animation-name: bounceIn;
}
@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: none;
	}
}
.bounceInDown {
	animation-name: bounceInDown;
}
@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInLeft {
	animation-name: bounceInLeft;
}
@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInRight {
	animation-name: bounceInRight;
}
@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInUp {
	animation-name: bounceInUp;
}
@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	animation-name: bounceOut;
}
@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	animation-name: bounceOutUp;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	animation-name: fadeIn;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDownBig {
	animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeft {
	animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRight {
	animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRightBig {
	animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUp {
	animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUpBig {
	animation-name: fadeInUpBig;
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	animation-name: fadeOut;
}
@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100px, 0);
	}
}
.fadeOutDown {
	animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-100px, 0, 0);
	}
}
.fadeOutLeft {
	animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100px, 0, 0);
	}
}
.fadeOutRight {
	animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100px, 0);
	}
}
.fadeOutUp {
	animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(-1turn);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		animation-timing-function: ease-in;
	}
	to {
		transform: perspective(400px);
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip;
}
@keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateX(-20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX;
}
@keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateY(-20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY;
}
@keyframes flipOutX {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}
.flipOutX {
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}
@keyframes flipOutY {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}
.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}
@keyframes lightSpeedIn {
	0% {
		transform: translate3d(100px, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		transform: none;
		opacity: 1;
	}
}
.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		transform: translate3d(100px, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}
@keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}
.rotateIn {
	animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownRight {
	animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpRight {
	animation-name: rotateInUpRight;
}
@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1;
	}
	to {
		transform-origin: center;
		transform: rotate(200deg);
		opacity: 0;
	}
}
.rotateOut {
	animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}
@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		transform: rotate(80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		transform: rotate(60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	animation-name: hinge;
}
@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom;
	}
	50% {
		transform: rotate(-10deg);
	}
	70% {
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.jackInTheBox {
	animation-name: jackInTheBox;
}
@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100px, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.rollIn {
	animation-name: rollIn;
}
@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100px, 0, 0) rotate(120deg);
	}
}
.rollOut {
	animation-name: rollOut;
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	animation-name: zoomIn;
}
@keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInDown {
	animation-name: zoomInDown;
}
@keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInLeft {
	animation-name: zoomInLeft;
}
@keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInRight {
	animation-name: zoomInRight;
}
@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInUp {
	animation-name: zoomInUp;
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	animation-name: zoomOut;
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutDown {
	animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
.zoomOutLeft {
	animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
.zoomOutRight {
	animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutUp {
	animation-name: zoomOutUp;
}
@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100px, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInDown {
	animation-name: slideInDown;
}
@keyframes slideInLeft {
	0% {
		transform: translate3d(-100px, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInLeft {
	animation-name: slideInLeft;
}
@keyframes slideInRight {
	0% {
		transform: translate3d(100px, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInRight {
	animation-name: slideInRight;
}
@keyframes slideInUp {
	0% {
		transform: translate3d(0, 100px, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInUp {
	animation-name: slideInUp;
}
@keyframes slideOutDown {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100px, 0);
	}
}
.slideOutDown {
	animation-name: slideOutDown;
}
@keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(-100px, 0, 0);
	}
}
.slideOutLeft {
	animation-name: slideOutLeft;
}
@keyframes slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(100px, 0, 0);
	}
}
.slideOutRight {
	animation-name: slideOutRight;
}
@keyframes slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100px, 0);
	}
}
.slideOutUp {
	animation-name: slideOutUp;
}
.ui-timepicker-container {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
}
.ui-timepicker,
.ui-timepicker-viewport {
	box-sizing: content-box;
	height: 205px;
	display: block;
	margin: 0;
}
.ui-timepicker {
	list-style: none;
	padding: 0 1px;
	text-align: center;
}
.ui-timepicker-viewport {
	padding: 0;
	overflow: auto;
	overflow-x: hidden;
}
.ui-timepicker-standard {
	font-family: Verdana, Arial, sans-serif;
	font-size: 1.1em;
	background-color: #fff;
	border: 1px solid #aaa;
	color: #222;
	margin: 0;
	padding: 2px;
}
.ui-timepicker-standard a {
	border: 1px solid transparent;
	color: #222;
	display: block;
	padding: 0.2em 0.4em;
	text-decoration: none;
}
.ui-timepicker-standard .ui-state-hover {
	background-color: #dadada;
	border: 1px solid #999;
	font-weight: 400;
	color: #212121;
}
.ui-timepicker-standard .ui-menu-item {
	margin: 0;
	padding: 0;
}
.ui-timepicker-corners,
.ui-timepicker-corners .ui-corner-all {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.ui-timepicker-hidden {
	display: none;
}
.ui-timepicker-no-scrollbar .ui-timepicker {
	border: none;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
main {
	display: block;
	clear: both;
}
thead {
	font-weight: 600;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 2px;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 80%;
}
button,
input,
select,
textarea {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
}
.custom-select:focus,
:focus,
[contenteditable].form-control:focus,
[type="email"].form-control:focus,
[type="password"].form-control:focus,
[type="tel"].form-control:focus,
[type="text"].form-control:focus,
button:focus,
input.form-control:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
select:focus,
textarea.form-control:focus,
textarea:focus {
	outline: 0 !important;
	box-shadow: none !important;
}
input:focus::-moz-placeholder {
	opacity: 0;
	-moz-transition: 0.4s;
	transition: 0.4s;
}
li.hr span {
	width: 100%;
	height: 1px;
	background-color: #e4e4e4;
	margin: 20px 0;
	display: block;
}
::-moz-selection {
	background: #069;
	color: #fff;
}
::selection {
	background: #069;
	color: #fff;
}
::-moz-selection {
	background: #069;
	color: #fff;
}
::-moz-placeholder {
	color: #122830;
	opacity: 1;
}
::placeholder {
	color: #122830;
	opacity: 1;
}
:-ms-input-placeholder,
::-webkit-input-placeholder {
	color: #122830;
	opacity: 1;
}
.custom-select:focus,
:focus,
[contenteditable].form-control:focus,
[type="email"].form-control:focus,
[type="password"].form-control:focus,
[type="tel"].form-control:focus,
[type="text"].form-control:focus,
button:focus,
input.form-control:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
select:focus,
textarea.form-control:focus,
textarea:focus {
	outline: 0 !important;
	box-shadow: none;
}
.img-responsive {
	max-width: 100%;
}
body {
	font-family: "DM Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "DM Sans", sans-serif;
	font-style: normal;
	color: #000;
}
h1 {
	font-weight: 700;
	font-size: 52px;
	line-height: 76px;
}
h2 {
	font-weight: 700;
	font-size: 44px;
	line-height: 58px;
}
h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
}
h4 {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}
h5 {
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}
h6 {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}
.heading-52 {
	font-weight: 400;
	font-size: 52px;
	line-height: 76px;
}
.heading-52-medium {
	font-weight: 500;
	font-size: 52px;
	line-height: 76px;
}
.heading-52-bold {
	font-weight: 700;
	font-size: 52px;
	line-height: 76px;
}
.heading-44 {
	font-weight: 400;
	font-size: 44px;
	line-height: 58px;
}
.heading-44-medium {
	font-weight: 500;
	font-size: 44px;
	line-height: 58px;
}
.heading-44-bold {
	font-weight: 700;
	font-size: 44px;
	line-height: 58px;
}
.heading-100-medium {
	font-weight: 700;
	font-size: 100px;
	line-height: 130px;
}
.heading-36-medium {
	font-weight: 500;
	font-size: 36px;
	line-height: 58px;
}
.heading-32-medium {
	font-weight: 500 !important;
	font-size: 32px !important;
	line-height: 58px !important;
}
.heading-30-medium {
	font-weight: 500;
	font-size: 30px;
	line-height: 58px;
}
.heading-24 {
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
}
.heading-24-medium {
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
}
.heading-24-bold {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
}
.bg-white {
	background-color: #fff;
}
.color-grey {
	color: #626262;
}
.color-primary {
	color: #000;
}
.color-text {
	color: #181a1f !important;
}
.bg-primary {
	background-color: #000 !important;
}
.bg-secondary {
	background-color: #e95440 !important;
}
.text-14 {
	font-size: 14px !important;
	line-height: 24px !important;
	font-weight: 400 !important;
}
.text-14-medium {
	font-size: 14px !important;
	line-height: 24px !important;
	font-weight: 500 !important;
}
.text-14-bold {
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
}
.text-16 {
	font-size: 16px !important;
	line-height: 28px !important;
	font-weight: 400 !important;
}
.text-16-medium {
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
}
.text-16-bold {
	font-size: 16px;
	line-height: 28px;
	font-weight: 700;
}
.text-18 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
}
.text-18-medium {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}
.text-18-medium-2 {
	font-size: 18px;
	line-height: 35px;
	font-weight: 500;
}
.text-18-bold {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}
.text-20 {
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
}
.text-20-medium {
	font-size: 20px;
	line-height: 32px;
	font-weight: 500;
}
.text-20-bold {
	font-size: 20px;
	line-height: 32px;
	font-weight: 700;
}
.color-success {
	color: #06d6a0;
}
.color-warning {
	color: #ffd166;
}
.color-danger {
	color: #ef476f;
}
.color-secondary {
	color: #e95440;
}
.color-mutted {
	color: #cfdee3;
}
.color-info {
	color: #28a7e6;
}
.color-white {
	color: #fff !important;
}
.section {
	display: inline-block;
	width: 100%;
}
.bg-1 {
	background-color: #f0f2f6 !important;
}
.bg-2 {
	background-color: #fdeeec !important;
}
.bg-3 {
	background-color: #f0fbf7 !important;
}
.bg-4 {
	background-color: #f6f6f6 !important;
}
a {
	color: #181a1f;
	text-decoration: none;
}
a:hover {
	color: #06d6a0;
}
@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1410px;
	}
}
.hover-up {
	transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.hover-up:hover {
	transform: translateY(-2px);
	transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
img {
	transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
img:hover {
	transform: translateY(-5px);
	transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.form-control {
	height: 54px;
	border-radius: 8px;
	color: #3d565f;
	border: 1px solid #cde2e7;
	padding: 18px 20px;
}
.form-control:focus {
	border-color: #06d6a0;
}
.form-control::-moz-placeholder {
	color: #8ea4ac;
	font-size: 16px;
	line-height: 24px;
	opacity: 1;
}
.form-control::placeholder {
	color: #8ea4ac;
	font-size: 16px;
	line-height: 24px;
	opacity: 1;
}
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
	color: #8ea4ac;
	font-size: 16px;
	line-height: 24px;
	opacity: 1;
}
.table-responsive {
	max-width: 100%;
}
.box-pagination {
	display: inline-block;
}
.pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
	margin-bottom: 20px;
}
.pagination li {
	padding: 0;
}
.pagination li a {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #181a1f;
	border: 1px solid #e5e5e5;
	border-left: 0;
	max-width: 55px;
	min-width: 55px;
	width: 100%;
	text-align: center;
	padding: 15px 20px;
	margin-left: 0;
}
.pagination li a:hover {
	background-color: #f0fbf7;
}
.pagination li a.active {
	background-color: #000 !important;
	color: #fff;
}
.pagination li .page-prev {
	background: 0 0;
	min-height: 55px;
	padding: 15px 20px;
	border-radius: 0;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	border: 1px solid #e5e5e5;
}
.pagination li .page-prev svg {
	color: #181a1f;
	height: 14px;
}
.pagination li .page-next {
	min-height: 55px;
	padding: 15px 20px;
	border: 1px solid #e5e5e5;
	border-left: 0;
	border-radius: 0;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
.pagination li .page-next svg {
	color: #181a1f;
	height: 14px;
}
.page-item:not(:first-child) .page-link {
	margin-left: 0;
}
.container-sub {
	max-width: 1170px;
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}
.border-bottom {
	border-bottom: 1px solid #e5e5e5;
}
.ui-datepicker.ui-widget.ui-widget-content {
	border: 2px solid #181a1f !important;
	border-radius: 6px;
	padding: 20px;
	background-color: #fff;
}
.ui-datepicker {
	width: 100%;
	max-width: 430px;
}
.ui-datepicker th {
	padding: 14px 14px 4px 14px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #181a1f;
	font-family: "DM Sans", sans-serif !important;
}
.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
	background-color: #fff;
	border-color: #fff;
	font-size: 15px;
	line-height: 27px;
	color: #181a1f;
	font-family: "DM Sans", sans-serif !important;
	font-weight: 500;
}
.ui-datepicker td a,
.ui-datepicker td span {
	text-align: center;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	line-height: 48px;
	padding: 0;
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover {
	background-color: #181a1f;
	color: #fff;
}
.ui-state-default.ui-state-active,
.ui-widget-content .ui-state-default.ui-state-active {
	background-color: #181a1f;
	color: #fff;
}
.ui-state-default.ui-state-highlight,
.ui-widget-content .ui-state-default.ui-state-highlight {
	background-color: #626262;
	color: #fff;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
	width: 36px;
	height: 36px;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	line-height: 36px;
	background-color: #fff;
	top: 0;
}
.ui-datepicker .ui-datepicker-next:hover,
.ui-datepicker .ui-datepicker-prev:hover {
	background-color: #f0fbf7;
	border-color: #181a1f;
}
.ui-datepicker .ui-datepicker-next {
	background-image: url(../imgs/template/icons/next-day.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev {
	background-image: url(../imgs/template/icons/prev-day.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.ui-datepicker .ui-datepicker-title span {
	font-size: 18px;
	line-height: 28px;
	font-family: "DM Sans", sans-serif !important;
	font-weight: 500;
}
.ui-widget-header {
	border: 0;
	background: #fff;
	color: #181a1f;
}
.bd-rd6 {
	border-radius: 6px;
}
a.color-primary:hover,
a.color-primary:hover *,
a.color-text:hover,
a.color-text:hover *,
a.color-white:hover,
a.color-white:hover * {
	color: #e95440 !important;
}
.latest-new-white .tags a:hover,
.tags a:hover {
	color: #e95440 !important;
}
.box-button-download .btn-download {
	margin-bottom: 20px;
}
.box-count {
	text-align: left;
	margin: 0 0 20px 0;
}
.box-count .deals-countdown {
	border-radius: 0;
	display: flex;
	padding: 4px 0;
	width: 100%;
	margin: auto;
	max-width: 100%;
}
.box-count .deals-countdown .countdown-section {
	display: inline-block;
	text-align: center;
	width: 25%;
	line-height: 12px;
	position: relative;
}
.box-count .deals-countdown .countdown-section span {
	display: block;
	color: #fff;
}
.box-count .deals-countdown .countdown-section .countdown-amount {
	font-size: 52px;
	font-weight: 500;
	line-height: 76px;
	color: #fff;
}
.box-count .deals-countdown .countdown-section .countdown-period {
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
}
.box-count .deals-countdown .countdown-section:last-child::before {
	display: none;
}
a,
button,
h4,
img,
input,
span {
	transition: all 0.3s ease 0s;
}
@keyframes slideleft {
	10% {
		opacity: 0;
		transform: scale(0);
		right: 0;
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	90% {
		opacity: 0;
		transform: scale(0);
		right: 100%;
	}
}
[data-loader="spinner"] {
	width: 35px;
	height: 35px;
	display: inline-block;
	animation: spinner 1.2s infinite ease-in-out;
	background: url(../imgs/theme/favicon.html);
	box-shadow: 0 0 10px #fff;
}
@keyframes spinner {
	0% {
		transform: perspective(120px) rotateX(0) rotateY(0);
	}
	50% {
		transform: perspective(120px) rotateX(-180deg) rotateY(0);
	}
	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
	}
}
@keyframes shadow-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(151, 119, 250, 0.8);
	}
	100% {
		box-shadow: 0 0 0 5px transparent;
	}
}
@keyframes shadow-pulse-big {
	0% {
		box-shadow: 0 0 0 0 rgba(239, 63, 72, 0.1);
	}
	100% {
		box-shadow: 0 0 0 20px transparent;
	}
}
@keyframes jump {
	0% {
		transform: translate3d(0, 20%, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
.jump {
	transform-origin: 0;
	animation: jump 0.5s linear alternate infinite;
}
body {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	line-height: 18px;
	font-style: normal;
	font-weight: 500;
	position: relative;
}
.btn {
	border-radius: 4px;
	padding: 10px 0 10px 22px;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	text-decoration: none;
	position: relative;
}
.btn.btn-default {
	padding: 7px 21px;
	border-radius: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}
.btn.btn-default:hover {
	background-color: #fff;
	color: #181a1f;
}
.btn.btn-white {
	padding: 7px 21px;
	border-radius: 40px;
	background-color: #fff;
	color: #181a1f;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}
.btn.btn-white:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}
.btn.btn-search {
	padding: 13px 24px 13px 24px;
	border-radius: 60px;
	background-color: #000;
	color: #fff;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn.btn-search img {
	vertical-align: middle;
	margin-right: 10px;
}
.btn.btn-search:hover {
	background-color: #e95440;
	color: #fff;
}
.btn.btn-search-2 {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 60px;
	line-height: 100%;
	text-align: center;
	padding: 0;
}
.btn.btn-search-2 svg {
	height: 25px;
	color: #181a1f;
}
.btn.btn-tag {
	border-radius: 32px;
	background-color: #fdeeec;
	color: #000;
	padding: 7px 20px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}
.btn.btn-tag:hover {
	color: #22c58b;
}
.btn.btn-link-location {
	padding: 5px 20px 5px 37px;
	background-image: url(../imgs/template/marker.svg);
	background-repeat: no-repeat;
	background-position: left 14px center;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #fff;
}
.btn.btn-link-location:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 40px;
}
.btn.btn-link-globe {
	padding: 5px 20px 5px 37px;
	background-image: url(../imgs/template/icons/globe.svg);
	background-repeat: no-repeat;
	background-position: left 14px center;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #fff;
}
.btn.btn-link-globe:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 40px;
}
.btn.btn-arrow-up {
	padding: 0;
	height: 50px;
	width: 50px;
	border: 1px solid #fff;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
}
.btn.btn-arrow-up svg {
	color: #fff;
}
.btn.btn-arrow-up:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
.btn.btn-primary {
	background-color: #000;
	border-radius: 6px;
	padding: 14px 24px;
	color: #fff;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	border: 0;
}
.btn.btn-primary:hover {
	background-color: #e95440;
	color: #fff;
}
.btn.btn-primary-big {
	padding-top: 20px;
	padding-bottom: 20px;
}
.btn.btn-grey {
	background-color: #f6f6f6;
	border-radius: 6px;
	padding: 14px 20px;
	color: #181a1f;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	border: 0;
}
.btn.btn-grey:hover {
	background-color: #000;
	color: #fff;
}
.btn.btn-grey:hover svg {
	color: #fff;
}
.btn.btn-secondary {
	background-color: #e95440;
	border-radius: 6px;
	padding: 14px 24px;
	color: #fff;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	border: 0;
}
.btn.btn-secondary:hover {
	background-color: #000;
	color: #fff;
}
.btn.btn-border {
	border: 1px solid #fff;
	border-radius: 6px;
	padding: 14px 24px;
	color: #fff;
}
.btn.btn-border svg {
	color: #fff;
	margin-left: 5px;
	vertical-align: sub;
	display: inline-block;
}
.btn.btn-download {
	padding: 9px 15px 9px 20px;
	background-color: #000;
	border-radius: 12px;
	max-width: 210px;
	width: 100%;
}
.btn.btn-download .inner-download {
	display: flex;
	color: #fff;
	font-size: 12px;
	line-height: 24px;
	font-weight: 400;
	align-items: center;
}
.btn.btn-download .inner-download .icon-download {
	padding-right: 20px;
	position: relative;
	margin-right: 20px;
}
.btn.btn-download .inner-download .icon-download img {
	display: block;
}
.btn.btn-download .inner-download .icon-download::before {
	content: "";
	height: 30px;
	width: 1px;
	background-color: #fff;
	opacity: 0.2;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.btn.btn-download .inner-download .info-download {
	text-align: left;
}
.btn.btn-download .inner-download .info-download .text-download-top {
	letter-spacing: 0.3px;
}
.btn.btn-download .inner-download .info-download span {
	display: block;
	line-height: 20px !important;
}
.btn.btn-white-big {
	border: 1px solid #fff;
	border-radius: 6px;
	padding: 13px 24px;
	color: #181a1f;
	background-color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
}
.btn.btn-white-big svg {
	color: #181a1f;
	margin-left: 5px;
	vertical-align: sub;
	display: inline-block;
}
.btn.btn-white-big:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}
.btn.btn-white-big:hover svg {
	color: #fff;
}
.btn.btn-border-black {
	border: 1px solid #181a1f;
	border-radius: 6px;
	padding: 14px 24px;
	color: #181a1f;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	background-color: #fff;
}
.btn.btn-border-black svg {
	color: #181a1f;
	margin-left: 5px;
	vertical-align: sub;
	display: inline-block;
}
.btn.btn-border-black:hover {
	background-color: #000;
	color: #fff;
}
.btn.btn-border-black:hover svg {
	color: #fff;
}
.btn.btn-border-black-small {
	border: 1px solid #181a1f;
	border-radius: 6px;
	padding: 5px 20px;
	color: #181a1f;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	background-color: #fff;
}
.btn.btn-border-black-small svg {
	color: #181a1f;
	margin-left: 5px;
	vertical-align: sub;
	display: inline-block;
}
.btn.btn-border-black-small:hover {
	background-color: #000;
	color: #fff;
}
.btn.btn-border-black-small:hover svg {
	color: #fff;
}
.btn.btn-rounded {
	border-radius: 60px;
	padding: 0 20px;
	color: #e95440;
	font-size: 13px;
	line-height: 28px;
	font-weight: 500;
	background-color: #fdeeec;
}
.btn.btn-link {
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #000;
	padding: 5px 0;
}
.btn.btn-like {
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #181a1f;
	padding: 0 0 0 26px;
	background: url(../imgs/page/blog2/like.png) no-repeat left center;
	vertical-align: middle;
}
.btn.btn-like:hover {
	color: #e95440;
}
.btn.btn-dislike {
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #626262;
	padding: 0 0 0 26px;
	background: url(../imgs/page/blog2/dislike.png) no-repeat left center;
	vertical-align: middle;
}
.btn.btn-dislike:hover {
	color: #e95440;
}
.btn.btn-book {
	max-width: 320px;
	width: 100%;
	text-align: center;
}
.btn.btn-login-google {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 14px 21px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #181a1f;
	background: url(../imgs/page/signin/google.svg) no-repeat left 20px center;
	text-align: center;
	width: 100%;
}
.btn.btn-login-google:hover {
	background-color: #3a77ea;
	color: #fff;
	border: 1px solid #3a77ea;
}
.btn.btn-login-facebook {
	border: 1px solid #3a77ea;
	border-radius: 8px;
	padding: 14px 21px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #fff;
	background: url(../imgs/page/signin/facebook.svg) no-repeat left 20px center;
	background-color: #3a77ea;
	text-align: center;
	width: 100%;
}
.btn.btn-login-facebook:hover {
	background-color: #181818;
	border-color: #181818;
}
.btn.btn-login-apple {
	border: 1px solid #181818;
	border-radius: 8px;
	padding: 14px 21px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #fff;
	background: url(../imgs/page/signin/apple.svg) no-repeat left 20px center;
	background-color: #181818;
	text-align: center;
	width: 100%;
}
.btn.btn-login-apple:hover {
	background-color: #3a77ea;
	border-color: #3a77ea;
}
.bg-download-2 .btn.btn-download {
	background-color: #333;
}
.btn-homepage {
	padding: 0 !important;
	margin: 0 0 15px 0;
}
.btn-homepage span {
	display: inline-block;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 25px;
	background-color: #afeae4;
	border-radius: 50%;
	margin-right: 10px;
}
.btn-homepage span svg {
	color: #024430;
}
.btn-homepage:hover * {
	color: #071920;
}
.dropdown-language {
	display: inline-block;
}
.dropdown-language .dropdown-toggle::after {
	display: none;
}
.dropdown-language .btn {
	padding: 0;
}
.btn-tooltip {
	position: relative;
}
.btn-tooltip:after {
	bottom: 0;
	right: 34px;
	position: absolute;
	white-space: nowrap;
	border-radius: 5px;
	font-size: 11px;
	padding: 7px 10px;
	color: #afeae4;
	background-color: #3d565f;
	content: attr(aria-label);
	line-height: 1.3;
	box-shadow: 0;
	transition: 0;
	opacity: 0;
	visibility: hidden;
	transform: 0;
	transition-duration: 0.2s;
}
.btn-tooltip:before {
	content: "";
	position: absolute;
	left: -8px;
	bottom: 0;
	transition-delay: 0.1s;
	border: 7px solid transparent;
	border-left-color: transparent;
	border-left-color: #3d565f;
	z-index: 9;
	margin-bottom: 0;
	transition: 0;
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.2s;
}
.btn-tooltip:hover:after {
	opacity: 1;
	visibility: visible;
	transform: 0;
	transition-duration: 0.2s;
}
.btn-tooltip:hover:before {
	opacity: 1;
	visibility: visible;
	transform: translateY(-8px);
	transition-duration: 0.2s;
}
.cb-container {
	display: block;
	position: relative;
	padding-left: 34px;
	margin-bottom: 12px;
	cursor: pointer;
	line-height: 25px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.cb-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 1px;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: #fff;
	border: 2px solid #8ea4ac;
	border-radius: 4px;
}
.cb-container input:checked ~ .checkmark {
	border: 2px solid #8ea4ac;
}
.cb-container .text-small {
	color: #3d565f;
	font-weight: 500;
}
.cb-container input:checked ~ .text-small {
	color: #3d565f;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.cb-container input:checked ~ .checkmark:after {
	display: block;
}
.cb-container input:checked ~ .text-lbl {
	color: #ccc;
}
.cb-container .checkmark:after {
	left: -2px;
	top: -2px;
	width: 24px;
	height: 24px;
	background: #06d6a0 url(../imgs/page/register/check.html) no-repeat center;
	border-radius: 4px;
}
.box-swiper {
	position: relative;
	width: 100%;
}
.box-swiper .swiper-container {
	position: relative;
	height: 100%;
	padding-bottom: 35px;
}
.box-swiper .swiper-container .item-logo {
	border: 1px solid #ccc;
	padding: 39px 0 36px 0;
	display: inline-block;
	width: 100%;
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.box-swiper .swiper-container .item-logo img {
	max-width: 100%;
}
.box-swiper .swiper-container .item-logo:hover {
	border: 1px solid #ccc;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.swiper-button-next:after,
.swiper-button-prev:after {
	content: "";
}
.swiper-button-next {
	background: url(../imgs/slider/swiper/next.svg) no-repeat 0 0;
}
.swiper-button-next:hover {
	background: url(../imgs/slider/swiper/next.svg) no-repeat 0 0;
}
.swiper-button-prev {
	background: url(../imgs/slider/swiper/prev.svg) no-repeat 0 0;
}
.swiper-button-prev:hover {
	background: url(../imgs/slider/swiper/prev.svg) no-repeat 0 0;
}
.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	margin-top: 0;
}
.swiper-button-next {
	left: auto;
	right: 0;
	top: 20px;
}
.swiper-button-prev {
	left: auto;
	right: 40px;
	top: 20px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 1;
}
.swiper-container-horizontal
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 2px;
}
.swiper-pagination {
	text-align: center;
	width: 100%;
}
.swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: #fff;
	opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: #024430;
	width: 16px;
	height: 8px;
	border-radius: 7px;
}
.swiper-pagination.swiper-pagination-2 .swiper-pagination-bullet {
	background: #b9cad0;
}
.swiper-pagination.swiper-pagination-2 .swiper-pagination-bullet-active {
	background: #024430;
}
.swiper-pagination-bullet {
	margin: 10px;
}
.swiper-pagination-custom {
	bottom: 40px;
	padding-left: 70px;
}
.swiper-pagination-customs {
	background: url(../imgs/slider/swiper/dot.html) no-repeat 0 0;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	width: 10px;
	height: 10px;
	margin-left: 4px;
	margin-right: 4px;
}
.swiper-pagination-customs-active,
.swiper-pagination-customs:hover {
	background: url(../imgs/slider/swiper/dot-active.html) no-repeat 0 0;
	width: 12px;
	height: 12px;
	margin-bottom: -1px;
	margin-left: 3px;
	margin-right: 3px;
}
.box-button-slider {
	position: absolute;
	top: 0;
	left: 0;
}
.swiper-group-1 .swiper-pagination {
	bottom: 50px;
	left: 55px;
}
.swiper-group-1.swiper-home-3 .swiper-pagination {
	left: 0;
}
.swiper-group-1.home-9 .swiper-pagination {
	bottom: 20px;
	left: 25px;
}
.slider-labels {
	margin-top: 10px;
}
.noUi-target,
.noUi-target * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	touch-action: none;
	-moz-user-select: none;
	user-select: none;
	box-sizing: border-box;
}
.noUi-target {
	position: relative;
	direction: ltr;
}
.noUi-base {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
}
.noUi-handle {
	position: relative;
	z-index: 1;
}
.noUi-stacking .noUi-handle {
	z-index: 10;
}
.noUi-state-tap .noUi-origin {
	transition: left 0.3s, top 0.3s;
}
.noUi-state-drag * {
	cursor: inherit !important;
}
.noUi-base,
.noUi-handle {
	transform: translate3d(0, 0, 0);
}
.noUi-horizontal {
	height: 4px;
}
.noUi-horizontal .noUi-handle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	left: -6px;
	top: -6px;
	background-color: #345dbb;
}
.noUi-background {
	background: #d6d7d9;
}
.noUi-connect {
	background: #345dbb;
	transition: background 450ms;
}
.noUi-origin {
	border-radius: 2px;
}
.noUi-target {
	border-radius: 2px;
}
.noUi-draggable {
	cursor: w-resize;
}
.noUi-vertical .noUi-draggable {
	cursor: n-resize;
}
.noUi-handle {
	cursor: default;
	box-sizing: content-box !important;
}
.noUi-handle:active {
	border: 8px solid #345dbb;
	border: 8px solid rgba(53, 93, 187, 0.38);
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	left: -14px;
	top: -14px;
}
[disabled] .noUi-connect,
[disabled].noUi-connect {
	background: #ffe7bb;
}
[disabled] .noUi-handle,
[disabled].noUi-origin {
	cursor: not-allowed;
}
.ui-slider-handle {
	display: none;
}
.ui-widget.ui-widget-content {
	border: 0 solid #ebebeb;
}
.noUi-target {
	border-radius: 12px;
}
.noUi-horizontal {
	height: 6px;
}
.noUi-background {
	background: #ccc;
}
.noUi-origin {
	border-radius: 12px;
}
.noUi-connect {
	background: #069;
	transition: background 450ms;
	height: 6px;
	margin-top: 0;
}
.noUi-horizontal .noUi-handle {
	background-color: #069;
	border: 1px solid #069;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	left: -6px;
	top: -6px;
}
.noUi-handle:active {
	border-width: 1px;
	left: -6px;
	top: -6px;
}
.cardFleet {
	width: 100%;
	display: inline-block;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 30px;
	background-color: #fff;
}
.cardFleet .cardInfo {
	position: relative;
}
.cardFleet .cardInfo a:hover h3 {
	color: #e95440 !important;
}
.cardFleet .cardImage {
	position: relative;
}
.cardFleet .cardImage img {
	width: 100%;
}
.cardFleet .cardInfoBottom {
	position: relative;
	display: flex;
	align-items: center;
}
.cardFleet .cardInfoBottom .luggage,
.cardFleet .cardInfoBottom .passenger {
	display: flex;
	align-items: center;
	width: 50%;
}
.cardFleet .cardInfoBottom .luggage .icon-circle,
.cardFleet .cardInfoBottom .passenger .icon-circle {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #f6f6f6;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 10px;
}
.cardFleet .cardInfoBottom .passenger {
	width: 100%;
}
.cardFleet .cardInfoBottom .passenger .icon-passenger {
	background-image: url(../imgs/template/icons/friend.svg);
}
.cardFleet .cardInfoBottom .luggage {
	width: 60%;
	min-width: 117px;
	text-align: right;
	justify-content: flex-end;
}
.cardFleet .cardInfoBottom .luggage .icon-luggage {
	background-image: url(../imgs/template/icons/luggage.svg);
}
.cardFleet:hover {
	background-color: #f6f6f6;
}
.cardFleet:hover .cardInfoBottom .luggage .icon-circle,
.cardFleet:hover .cardInfoBottom .passenger .icon-circle {
	background-color: #fff;
}
.cardFleet.cardFleetStyle2 {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border: 0;
	margin-bottom: 30px;
}
.cardFleet.cardFleetStyle2:hover {
	background-color: #fff;
}
.cardFleet.cardFleetStyle2:hover .cardInfoBottom .luggage .icon-circle,
.cardFleet.cardFleetStyle2:hover .cardInfoBottom .passenger .icon-circle {
	background-color: #f6f6f6;
}
.cardFleet.cardFleetStyle2:hover .cardInfo h3 {
	color: #e95440 !important;
}
.cardFleet.cardFleetStyle3 {
	border: 0;
}
.cardFleet.cardFleetStyle3 .cardInfoBottom .luggage .icon-circle,
.cardFleet.cardFleetStyle3 .cardInfoBottom .passenger .icon-circle {
	width: 20px;
	height: 20px;
	background-color: transparent;
}
.cardFleet.cardFleetStyle3:hover {
	background-color: transparent;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.cardFleet.cardFleetStyle3 .cardInfoBottom .luggage {
	justify-content: flex-start;
}
.cardFleet.cardFleetStyle3 .cardInfoBottom .passenger {
	min-width: 40px;
	max-width: 40px;
	margin-right: 20px;
}
.cardIconTitleDesc {
	text-align: center;
}
.cardIconTitleDesc .cardIcon {
	margin-bottom: 30px;
}
.cardIconTitleDesc .cardTitle {
	margin-bottom: 10px;
}
.cardIconTitleDesc .cardDesc {
	margin-bottom: 30px;
}
.cardService {
	height: auto;
	width: 100%;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
}
.cardService .cardImage {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.cardService .cardImage img {
	height: auto;
	min-height: 100%;
	position: relative;
	z-index: 1;
	width: 100%;
	display: block;
}
.cardService .cardImage::before {
	content: "";
	background-image: url(../imgs/page/homepage1/bg-trans.png);
	background-position: bottom left;
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.cardService .cardInfo {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	padding: 30px 30px 20px 30px;
}
.cardService .cardInfo .cardTitle {
	color: #fff;
}
.cardService .cardInfo .box-inner-info {
	overflow: hidden;
	height: 0;
	transition: height 0.3s ease-in;
}
.cardService .cardInfo .box-inner-info .cardDesc {
	color: #fff;
	max-height: 48px;
	overflow: hidden;
}
.cardService .cardInfo .box-inner-info .cardLink {
	color: #fff;
}
.cardService:hover .box-inner-info {
	height: 130px;
	transition: height 0.3s ease-in;
}
.cardNews {
	margin-bottom: 30px;
}
.cardNews .cardImage {
	margin-bottom: 20px;
	position: relative;
}
.cardNews .cardImage img {
	border-radius: 6px;
	width: 100%;
	display: block;
}
.cardNews .cardImage::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-image: url(../imgs/page/homepage1/bg-trans2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.cardNews .cardImage .datePost {
	position: absolute;
	top: 20px;
	left: 30px;
	z-index: 2;
}
.cardNews .cardImage .datePost .heading-52-medium {
	line-height: 52px;
}
.cardWork {
	margin-bottom: 30px;
}
.cardWork .cardImage {
	margin-bottom: 30px;
	position: relative;
	max-height: 200px;
}
.cardWork .cardTitle {
	margin-bottom: 20px;
}
.cardServiceStyle2 .cardImage {
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 20px;
}
.cardServiceStyle2 .cardImage img {
	width: 100%;
	display: block;
}
.cardServiceStyle3 {
	height: 290px;
	border-radius: 16px;
}
.cardServiceStyle3 .cardImage img {
	width: auto;
	min-width: 100%;
	max-width: none;
	max-height: 100%;
}
.cardServiceStyle3:hover .cardImage::before {
	background-image: url(../imgs/page/homepage5/bg-trans-pink.png);
}
.cardServiceStyle4 {
	height: auto;
	background-color: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	overflow: visible;
}
.cardServiceStyle4 .cardImage {
	position: relative;
	top: auto;
}
.cardServiceStyle4 .cardImage img {
	width: 100%;
	border-radius: 6px 6px 0 0;
	display: block;
}
.cardServiceStyle4 .cardInfo {
	position: relative;
	bottom: auto;
	left: auto;
	padding: 20px 30px;
}
.cardServiceStyle4 .cardInfo .color-white {
	color: #181a1f !important;
}
.cardServiceStyle4:hover .cardInfo .color-white {
	color: #e95440 !important;
}
.cardTestimonial {
	border-radius: 6px;
	padding: 30px;
	background-color: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.cardCities {
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
}
.cardCities .cardImage {
	margin-bottom: 20px;
}
.cardCities .cardImage img {
	border-radius: 6px;
	width: 100%;
}
.cardCities .cardInfo .cardTitle {
	font-size: 15px;
	line-height: 28px;
	color: #181a1f;
	font-weight: 400;
}
.cardCities .cardInfo .cardTitle:hover {
	color: #e95440 !important;
}
.cardCities .cardInfo .cardDesc {
	font-size: 17px;
	line-height: 28px;
	color: #181a1f;
	font-weight: 500;
}
.cardImageText {
	margin-bottom: 90px;
	display: inline-block;
}
.cardImageText .cardImage {
	margin-bottom: 20px;
}
.cardImageLeftTextRight {
	display: flex;
	align-items: center;
	margin-bottom: 80px;
}
.cardImageLeftTextRight .cardImage {
	width: 90px;
	height: 90px;
	padding: 20px;
	text-align: center;
	background-color: #fff;
	margin-right: 30px;
	border-radius: 18px;
	line-height: 50px;
}
.cardImageLeftTextRight .cardImage img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	display: inline-block;
}
.cardContact .cardImage img {
	max-height: 120px;
	max-width: 100%;
	display: block;
}
.cardContact .cardInfo {
	position: relative;
}
.cardTeam {
	margin-bottom: 30px;
}
.cardTeam .cardImage {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 20px;
}
.cardTeam .cardImage .box-arrow-up-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-image: url(../imgs/page/our-team/bg-trans.png);
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}
.cardTeam .cardImage img {
	position: relative;
	z-index: 1;
	display: block;
}
.cardTeam:hover .cardImage .box-arrow-up-link {
	display: flex;
}
.cardTeam .cardInfo {
	position: relative;
}
.card-experiences {
	display: flex;
	width: 100%;
}
.card-experiences .card-experience-circle {
	position: relative;
	min-width: 30px;
	max-width: 30px;
	margin-right: 20px;
}
.card-experiences .card-experience-circle .circle-text {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #fdeeec;
	font-size: 11px;
	line-height: 30px;
	font-weight: 700;
	text-align: center;
}
.card-experiences .card-experience-info .year {
	background-color: #fdeeec;
	border-radius: 60px;
	display: inline-block;
	padding: 3px 13px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	font-family: "DM Sans", sans-serif;
}
.card-plan {
	border-radius: 8px;
	padding: 44px 50px 49px 50px;
	background-color: #fff;
	border: 1px solid #cde2e7;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.card-plan .desc-plan {
	margin-bottom: 17px;
}
.card-plan .title-plan {
	margin-bottom: 0;
}
.card-plan .btn-border-black {
	width: 100%;
}
.card-plan .card-plan-top {
	display: flex;
	justify-content: space-between;
}
.card-plan .card-plan-top .card-top-left-info {
	width: 100%;
}
.card-plan .card-plan-top .card-top-right-image {
	width: 30%;
	max-width: 70px;
	min-width: 70px;
}
.card-plan:hover {
	background-color: #fdeeec;
	border-color: #fdeeec;
}
.card-plan:hover .btn-border-black {
	color: #fff;
	background-color: #000;
}
.card-plan:hover .btn-border-black svg {
	color: #fff;
}
.cardNumberTitleDesc {
	position: relative;
	text-align: center;
	margin-bottom: 30px;
}
.cardNumberTitleDesc::before {
	content: "";
	height: 3px;
	width: 76%;
	background: url(../imgs/page/homepage6/dashed.svg) repeat-x 0 0;
	position: absolute;
	top: 35px;
	left: 65%;
}
.cardNumberTitleDesc .cardTitle {
	margin-bottom: 20px;
}
.cardNumberTitleDesc .cardNumber {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}
.cardNumberTitleDesc .cardNumber span {
	display: inline-block;
	height: 70px;
	width: 70px;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	text-align: center;
	line-height: 70px;
	font-size: 24px;
	font-weight: 500;
}
.cardNumberTitleDesc.cardNumberTitleDescStyle2 {
	display: flex;
}
.cardNumberTitleDesc.cardNumberTitleDescStyle2::before {
	display: none;
}
.cardNumberTitleDesc.cardNumberTitleDescStyle2 .cardNumber {
	min-width: 76px;
	margin-right: 20px;
	margin-bottom: 0;
}
.cardNumberTitleDesc.cardNumberTitleDescStyle2 .cardNumber span {
	font-size: 60px;
	line-height: 76px;
	font-weight: 400;
	color: #181a1f;
	border: 0;
	border-radius: 0;
}
.cardNumberTitleDesc.cardNumberTitleDescStyle2 .cardInfo {
	text-align: left;
}
.cardTestimonialsStyle2 .heading-24-medium {
	line-height: 45px;
}
.cardServiceStyle5 {
	display: flex;
	align-items: center;
	height: auto;
}
.cardServiceStyle5 .cardImage {
	width: 45%;
	position: relative;
	padding: 50px 50px 50px 0;
	height: auto;
}
.cardServiceStyle5 .cardImage img {
	display: block;
	width: 100%;
	position: relative;
	z-index: 2;
	border-radius: 0;
}
.cardServiceStyle5 .cardImage::before {
	content: "";
	position: absolute;
	top: 0;
	z-index: 1;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 90%;
	left: auto;
	background-color: #f6f6f6;
	background-image: none;
}
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
}
.whatsapp-float a:hover {
	background-color: #128c7e;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float i {
	width: 28px;
	height: 28px;
	background-image: url("../imgs/page/homepage2/whatsapp.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: brightness(0) invert(1);
}
.whatsapp-float .whatsapp-text {
	position: absolute;
	right: 70px;
	background-color: #333;
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 14px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	transform: translateX(10px);
}
.whatsapp-float .whatsapp-text::after {
	content: "";
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%);
	border-left: 5px solid #333;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.whatsapp-float:hover .whatsapp-text {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
@keyframes whatsapp-pulse {
	0% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	}
	70% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.7);
	}
	100% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	}
}
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
	}
	.whatsapp-float a {
		width: 50px;
		height: 50px;
	}
	.whatsapp-float i {
		width: 24px;
		height: 24px;
		background-image: url("../imgs/page/homepage2/whatsapp.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		filter: brightness(0) invert(1);
	}
	.whatsapp-float .whatsapp-text {
		display: none;
	}
}
.cardServiceStyle5 .cardInfo {
	width: 55%;
	padding-left: 70px;
	position: relative;
}
@keyframes load7 {
	0%,
	100%,
	80% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}
.loader {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	animation-fill-mode: both;
	animation: load7 1.8s infinite ease-in-out;
	color: #069;
	font-size: 10px;
	margin: 80px auto;
	position: relative;
	text-indent: -9999em;
	transform: translateZ(0);
	animation-delay: -0.16s;
}
.loader:before {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	animation-fill-mode: both;
	animation: load7 1.8s infinite ease-in-out;
	content: "";
	position: absolute;
	top: 0;
	left: -3.5em;
	animation-delay: -0.32s;
}
.loader:after {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	animation-fill-mode: both;
	animation: load7 1.8s infinite ease-in-out;
	content: "";
	position: absolute;
	top: 0;
	left: 3.5em;
}
.swiper-pagination {
	text-align: center;
	bottom: 0 !important;
}
.swiper-pagination .swiper-pagination-customs {
	background: #fff;
	border-radius: 50%;
}
.swiper-pagination .swiper-pagination-customs:hover {
	background: #fff;
}
.swiper-pagination .swiper-pagination-customs-active {
	background: #069;
}
.swiper-pagination.swiper-pagination-2 {
	top: auto;
	height: auto;
	z-index: 123;
	line-height: 30px;
	text-align: center;
}
.preloader {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999999999;
	transition: 0.6s;
	margin: 0 auto;
}
.preloader img {
	max-width: 250px;
}
.page-loading-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform: translateZ(0) scale(1);
	backface-visibility: hidden;
	transform-origin: 0 0;
}
.page-loading-inner div {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	box-sizing: content-box;
	margin: -10px -20px;
}
.page-loading-inner div:first-child {
	background: #e95440;
	animation: page-loading-inner 1s linear infinite;
	animation-delay: -0.5s;
}
.page-loading-inner div:nth-child(2) {
	background: #000;
	animation: page-loading-inner 1s linear infinite;
	animation-delay: 0s;
}
.page-loading-inner div:nth-child(3) {
	background: #e95440;
	animation: page-loading-inner-o 1s linear infinite;
	animation-delay: -0.5s;
}
.page-loading {
	width: 100px;
	height: 100px;
	display: inline-block;
	overflow: hidden;
}
@keyframes page-loading-inner-o {
	0% {
		opacity: 1;
		transform: translate(0 0);
	}
	49.99% {
		opacity: 1;
		transform: translate(30px, 0);
	}
	50% {
		opacity: 0;
		transform: translate(30px, 0);
	}
	100% {
		opacity: 0;
		transform: translate(0, 0);
	}
}
@keyframes page-loading-inner {
	0% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(30px, 0);
	}
	100% {
		transform: translate(0, 0);
	}
}
@keyframes rotate {
	0%,
	100%,
	49.999% {
		transform: none;
	}
	50%,
	99.999% {
		transform: rotate(90deg);
	}
}
@keyframes shift-left {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: scale(0.65) translateX(-75%);
	}
}
@keyframes shift-right {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: scale(0.65) translateX(75%);
	}
}
.preloader-dots {
	--uib-size: 30px;
	--uib-speed: 0.9s;
	--uib-color: #425a8b;
	position: relative;
	height: calc(var(--uib-size) / 2);
	width: var(--uib-size);
	filter: url("#uib-jelly-ooze");
	animation: rotate calc(var(--uib-speed) * 2) linear infinite;
}
.preloader-dots::before {
	content: "";
	position: absolute;
	top: 0;
	left: 25%;
	width: 50%;
	height: 100%;
	background: var(--uib-color);
	border-radius: 100%;
	animation: shift-left var(--uib-speed) ease infinite;
}
.preloader-dots::after {
	content: "";
	position: absolute;
	top: 0;
	left: 25%;
	width: 50%;
	height: 100%;
	background: var(--uib-color);
	border-radius: 100%;
	animation: shift-right var(--uib-speed) ease infinite;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	color: #069;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	border-color: #069 transparent transparent transparent;
	border-width: 5px 5px 0 5px;
}
.select2-search--dropdown {
	padding: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #ccc;
	margin-bottom: 15px;
	border-radius: 4px;
	padding: 8px;
}
.select2-container--default .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto;
	scrollbar-width: thin;
}
.select2-container--default
	.select2-results__option--highlighted[aria-selected] {
	background-color: #ccc;
	color: #069;
}
.modal-header .btn-close {
	margin: -0.5rem 0 -0.5rem auto;
}
.banner-home1 {
	position: relative;
	display: block;
}
.banner-home2 {
	position: relative;
	display: block;
	padding-left: 100px;
	padding-right: 100px;
}
.banner-home2 .box-banner-homepage-2 .box-cover-image {
	border-radius: 12px;
	overflow: hidden;
}
.box-banner-info {
	position: absolute;
	top: 40%;
	left: 0;
	width: 100%;
	z-index: 3;
	right: 0;
	max-width: 1170px;
	margin: auto;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
}
.box-cover-image {
	position: relative;
	background-position: center 80%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 850px;
	background-color: #f8f9fa;
}
.box-cover-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80%;
	background-color: #000;
	opacity: 0.1;
	z-index: 2;
}
.box-cover-image img {
	position: relative;
	z-index: 1;
}
.box-pagination-button {
	position: absolute;
	top: 30%;
	max-width: 1170px;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	align-items: center;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
}
.swiper-button-next-banner,
.swiper-button-prev-banner {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
}
.swiper-button-prev-banner {
	margin-right: 10px;
}
.swiper-pagination-banner {
	position: relative;
	display: inline-block;
	bottom: auto !important;
	text-align: left;
	width: auto;
	left: auto;
	padding: 0 0 0 12px;
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}
.ui-timepicker-standard {
	width: 270px !important;
	border: 2px solid #181a1f !important;
	padding: 15px 0;
	border-radius: 6px;
	margin-top: 40px;
	margin-left: -60px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.ui-timepicker-standard .ui-timepicker,
.ui-timepicker-standard .ui-timepicker-viewport {
	height: 260px !important;
}
.ui-timepicker-standard .ui-timepicker {
	text-align: left;
}
.ui-timepicker-standard li a {
	padding: 0 20px;
	border-radius: 0;
	border: 1px solid #fff;
	font-size: 14px;
	line-height: 35px;
	color: #181a1f;
	font-family: "DM Sans", sans-serif;
	transition: none;
	font-weight: 500;
}
.ui-timepicker-standard li a.ui-state-hover {
	border-color: #f0fbf7;
	background-color: #f0fbf7;
	font-weight: 500;
	color: #181a1f;
}
.ui-timepicker-standard li a:hover {
	background-color: #f0fbf7;
	border-color: #f0fbf7;
}
.box-dropdown-location {
	position: absolute;
	top: 100%;
	left: 15px;
	background: #fff;
	border: 2px solid #181a1f;
	border-radius: 6px;
	padding: 0 20px;
	margin-top: 35px;
	width: 430px;
	z-index: 99;
	display: none;
}
.list-locations .item-location {
	display: flex;
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;
	cursor: pointer;
}
.list-locations .item-location:last-child {
	border-bottom: 0;
}
.list-locations .item-location:hover .location-info h6 {
	color: #22c58b;
}
.list-locations .item-location:hover .location-info p {
	color: #181a1f;
}
.list-locations .item-location .location-icon {
	max-width: 16px;
	margin-right: 20px;
	padding-top: 6px;
}
.list-locations .item-location .location-info {
	width: 100%;
}
@keyframes hero-thumb-animation {
	0% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes hero-thumb-animation-2 {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-20px);
	}
}
@keyframes hero-thumb-sm-animation {
	0% {
		transform: translateY(-20px) translateX(50px);
	}
	100% {
		transform: translateY(-20px) translateX(0);
	}
}
@keyframes hero-thumb-sm-2-animation {
	0% {
		transform: translateY(-50px);
	}
	100% {
		transform: translateY(0);
	}
}
.shape-1 {
	animation: hero-thumb-animation 2s linear infinite alternate;
}
.shape-1-2 {
	animation: hero-thumb-animation-2 2s linear infinite alternate;
}
.shape-2 {
	animation: hero-thumb-sm-animation 4s linear infinite alternate;
}
.shape-3 {
	animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
}
.box-container-sw {
	max-width: 700px;
	margin: auto;
	position: relative;
	min-height: 22px;
	line-height: 18px;
	padding: 10px 0;
}
.call-phone {
	background: url(../imgs/template/icons/call.svg) no-repeat left top 1px;
	padding-left: 22px;
}
.address-footer {
	background: url(../imgs/page/homepage3/address.png) no-repeat left top 1px;
	padding-left: 30px;
}
.time-footer {
	background: url(../imgs/page/homepage3/time.png) no-repeat left top 1px;
	padding-left: 30px;
}
.header {
	padding: 0 0;
	float: left;
	width: 100%;
	position: relative;
	border-bottom: 0 solid #b9cad0;
	background-color: #000;
	z-index: 1004;
}
.header .main-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: 10px 50px;
}
.header .main-header .header-left {
	display: flex;
	align-items: center;
	width: 100%;
}
.header .main-header .header-left .header-logo {
	max-width: 100px;
	width: 80%;
	display: flex;
	align-items: center;
	gap: 20px;
}
.header .main-header .header-left .header-logo a img {
	min-height: 30px;
}
.brand-text {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	font-family: "DM Sans", sans-serif;
}
.header .main-header .header-left .header-nav {
	text-align: center;
	flex: 1;
	width: 100%;
	display: flex;
	justify-content: center;
}
.header .main-header .header-left .header-right {
	width: 45%;
	text-align: right;
}
.header .main-header .header-left .header-right .icon-list {
	display: inline-block;
	padding: 0 10px 0 10px;
	position: relative;
	font-size: 16px;
	color: #afeae4;
	line-height: 24px;
	cursor: pointer;
}
.header .main-header .header-left .header-right .icon-list:hover {
	color: #024430;
}
.header .main-header .header-left .header-right .icon-list .arrow-down {
	background: url(../imgs/template/icons/globe.svg) no-repeat left top 1px;
	padding-left: 22px;
}
.header .main-header .header-left .header-right .icon-list .arrow-down:hover {
	color: #024430;
}
.header .nav-main-menu {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 0;
}
.header .burger-icon {
	display: none;
}
.header .main-menu > li {
	padding: 23px 0 23px 0;
	flex: 1;
	text-align: center;
}
.header .main-menu li {
	float: none;
	position: relative;
	text-align: center;
	flex: 1;
}
.header .main-menu li.has-children > a::after {
	content: "";
	background: url(../imgs/template/icons/angle-down.svg) no-repeat center;
	height: 8px;
	width: 12px;
	position: absolute;
	top: 50%;
	right: 14px;
	margin-left: 50px;
	margin-top: -4px;
}
.header .main-menu li.hr {
	padding: 0 22px;
}
.header .main-menu li.hr span {
	background-color: #b9cad0;
	height: 1px;
	width: 100%;
	display: block;
	margin: 5px 0;
}
.header .main-menu li a {
	font-family: "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	line-height: 24px;
	display: block;
	padding: 5px 8px;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	white-space: nowrap;
	width: 100%;
	text-align: center;
}
.header .main-menu li a:hover {
	color: #fff;
	border-radius: 40px;
	background-color: rgba(255, 255, 255, 0.18);
}
.header .main-menu li a:hover i {
	opacity: 1;
	transition: 0.2s;
}
.header .main-menu li a i {
	font-size: 12px;
	margin-right: 8px;
	opacity: 0.38;
	transition: 0.2s;
}
.header .main-menu li div.sub-menu {
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.2s;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999999;
	min-width: 220px;
	width: 400px;
	border-radius: 8px;
	padding: 25px 30px 10px 30px;
	background-color: #fff;
	border: 1px solid #cde2e7;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	border-bottom: 8px solid #afeae4;
	display: none;
}
.header .main-menu li div.sub-menu .menu-inner {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	top: auto;
	left: auto;
	opacity: 1;
	visibility: visible;
	border: 0;
	background-color: transparent;
	box-shadow: none;
}
.header .main-menu li div.sub-menu .menu-inner li {
	width: 50%;
	padding-right: 0;
}
.header .main-menu li div.sub-menu .menu-inner li a {
	padding-left: 0;
	padding-right: 0;
	color: #024430;
}
.header .main-menu li div.sub-menu .menu-inner li a svg {
	color: #8ea4ac;
	margin-right: 5px;
}
.header .main-menu li div.sub-menu .menu-inner li a:hover {
	color: #071920;
}
.header .main-menu li div.sub-menu .menu-inner li a:hover * {
	color: #071920;
}
.header .main-menu li ul {
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.2s;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999999;
	min-width: 220px;
	border-radius: 0;
	padding: 0;
	background-color: #181a1f;
	border: 0 solid #cde2e7;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.header .main-menu li ul li {
	width: 100%;
}
.header .main-menu li ul li a {
	font-size: 14px;
	color: #fff;
	position: relative;
	padding: 6px 22px 6px 22px;
	transition: 0.2s;
}
.header .main-menu li ul li a:hover {
	padding-left: 25px;
	transition: 0.2s;
	border-radius: 0;
}
.header .main-menu li ul li a.closer {
	padding: 8px 22px 8px 22px;
}
.header .main-menu li ul li ul {
	top: 0;
	left: 100%;
}
.header .main-menu li:hover > .sub-menu,
.header .main-menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	display: block;
}
.header .main-menu li:hover > .sub-menu li,
.header .main-menu li:hover > ul li {
	width: 100%;
}
.header.header-black-2 .btn-default {
	border: 1px solid #fff;
	border-radius: 6px;
	background-color: #181a1f;
}
.header.header-black-2 .btn-default:hover {
	background-color: #fff;
}
.header.header-black-2 .btn-white {
	border-radius: 6px;
}
.header.header-black-2 .btn-white:hover {
	background-color: #181a1f;
}
.header.header-white {
	background-color: transparent;
}
.header.header-white .main-menu li.has-children > a::after {
	background: url(../imgs/template/icons/angle-down.svg) no-repeat center;
}
.header.header-white .main-menu li a {
	color: #fff;
}
.header.header-white .main-menu li a:hover {
	color: #fff;
}
.header.header-white .main-menu li ul {
	background-color: #fff;
}
.header.header-white .main-menu li ul li a {
	color: #181a1f;
}
.header.header-white .main-menu li ul li a:hover {
	color: #22c58b;
}
.header.header-white .btn-default {
	border-radius: 6px;
	background-color: #f6f6f6;
	color: #181a1f;
}
.header.header-white .btn-white {
	background-color: #000;
	color: #fff;
	border-radius: 6px;
}
.header.header-white .call-phone {
	color: #fff !important;
	background: url(../imgs/template/icons/call.svg) no-repeat left top 1px;
}
.header.header-white
	.main-header
	.header-left
	.header-right
	.icon-list
	.arrow-down {
	color: #fff !important;
	background: url(../imgs/template/icons/globe.svg) no-repeat left top 1px;
}
.header.header-white .dropdown-account {
	background-color: #fff;
}
.header.header-white .box-dropdown-cart .dropdown-account ul li a {
	color: #181a1f;
}
.header.header-white .burger-icon.burger-icon-white > span::after,
.header.header-white .burger-icon.burger-icon-white > span::before {
	background-color: #fff;
}
.header.header-bg-2 {
	background-color: #fdeeec;
}
.header.header-bg-2 .btn-default {
	border-radius: 6px;
	background-color: transparent;
	color: #181a1f;
}
.header.header-bg-2 .btn-white {
	background-color: transparent;
	color: #181a1f;
	border-radius: 6px;
	border: 1px solid #181a1f;
}
.header.header-7 .main-header .header-left .header-nav {
	width: 72%;
}
.header.header-7 .main-header .header-left .header-right {
	width: 18%;
	text-align: right;
	min-width: 205px;
}
.header.header-homepage9 .container-fluid {
	padding-left: 60px;
	padding-right: 60px;
}
.header.header-homepage9 .main-menu > li:first-child > a {
	padding-left: 0;
}
.header.header-homepage9 .nav-main-menu {
	padding-left: 0;
}
.header.header-homepage9 .main-header .header-left {
	flex-wrap: wrap;
	display: flex;
	width: 100%;
}
.header.header-homepage9 .main-header .header-left .header-nav {
	width: 40%;
	display: inline-block;
}
.header.header-homepage9 .main-header .header-left .header-right {
	width: 40%;
	text-align: right;
	display: inline-block;
}
.header.header-homepage9 .main-header .header-left .header-logo {
	width: 20%;
	text-align: center;
	display: inline-block;
	max-width: 100%;
}
.header.header-homepage9 .main-header .header-left .header-logo img {
	max-width: 150px;
}
.header.header-transparent {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
}
.header.header-transparent .main-header .header-left {
	justify-content: space-between;
}
.header.header-transparent .main-header .header-left .header-right {
	width: 30%;
	min-width: 220px;
	max-width: 220px;
}
.box-notify svg {
	height: 14px;
	color: #ffe7bb;
}
.sticky-bar.stick {
	animation: 0.7s ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1004;
	left: 0;
	transition: all 0.3s ease 0s;
	border-bottom: 0 solid #b9cad0;
	background: #fff;
}
.sticky-bar.header-white {
	background-color: #fff;
}
.stick.header-white .main-menu li a {
	color: #181a1f;
}
.stick.header-white .main-menu li a:hover {
	color: #22c58b;
}
.stick.header-white .main-menu li.has-children > a::after {
	background: url(../imgs/template/icons/angle-down.svg) no-repeat center;
}
.stick.header-white .call-phone {
	color: #181a1f !important;
	background: url(../imgs/template/icons/call-black.svg) no-repeat left top 1px;
}
.stick.header-white
	.main-header
	.header-left
	.header-right
	.icon-list
	.arrow-down {
	color: #181a1f !important;
	background: url(../imgs/template/icons/globe-black.svg) no-repeat left top 1px;
}
.stick.header-white .burger-icon.burger-icon-white > span::after,
.stick.header-white .burger-icon.burger-icon-white > span::before {
	background-color: #181a1f;
}
.sticky-bar.header-bg-2 {
	background-color: #fdeeec;
}
.user-account {
	display: flex;
	align-items: center;
}
.user-account img {
	max-width: 50px;
	border-radius: 50%;
	margin-right: 10px;
}
.user-account .user-name {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 14px;
}
.perfect-scroll {
	height: 100vh;
	width: 100%;
	position: relative;
	max-width: 430px;
	padding: 0 20px 0 20px;
	display: inline-block;
}
.body-overlay-1 {
	background: 0 0;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	visibility: hidden;
	width: 100%;
	cursor: crosshair;
	z-index: 1002;
}
.mobile-menu-active .body-overlay-1 {
	opacity: 1;
	visibility: visible;
}
.dropdown-menu {
	border: 1px solid #3d565f;
	border-radius: 4px;
}
.dropdown-item {
	font-size: 14px;
	color: #afeae4;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
	color: #afeae4;
	text-decoration: none;
	background-color: #3d565f;
}
.dropdown-language .dropdown-item img {
	margin-right: 5px;
}
.box-dropdown-cart {
	position: relative;
}
.box-dropdown-cart .dropdown-account {
	padding: 25px 25px;
	width: 150px;
}
.box-dropdown-cart .dropdown-account ul li {
	margin-bottom: 15px;
}
.box-dropdown-cart .dropdown-account ul li a {
	color: #fff;
	text-decoration: none;
}
.box-dropdown-cart .dropdown-account ul li a img {
	float: left;
	margin: 4px 10px 0 0;
}
.dropdown-cart {
	display: none;
	visibility: hidden;
	position: absolute;
	right: -70px;
	top: calc(100% + 22px);
	z-index: 99;
	width: 320px;
	background-color: #fff;
	padding: 22px;
	transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
	border-radius: 0 0 4px 4px;
	border: 1px solid #3d565f;
}
.dropdown-cart.dropdown-open {
	display: block;
	visibility: visible;
}
.dropdown-account {
	width: 200px;
	right: 0;
	display: none;
	visibility: hidden;
	position: absolute;
	top: calc(100% + 30px);
	border-radius: 8px;
	z-index: 99;
	width: 220px;
	background-color: #000;
	padding: 22px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
	border: 1px solid #000;
}
.dropdown-account.dropdown-open {
	display: block;
	visibility: visible;
}
.dropdown-account ul li {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 20px;
}
.dropdown-account ul li:last-child {
	margin: 0;
}
.dropdown-account ul li a {
	color: #fff;
}
.dropdown-account ul li a:hover {
	color: #024430;
}
.item-cart {
	display: flex;
	text-align: left;
}
.item-cart .cart-image {
	min-width: 80px;
	max-width: 80px;
	margin-right: 15px;
}
.item-cart .cart-image img {
	width: 100%;
}
.item-cart .color-brand-3:hover {
	color: #024430 !important;
}
.search-post svg {
	height: 16px;
	color: #071920;
}
.swiper-button-next-notify,
.swiper-button-prev-notify {
	background: 0 0;
	height: 14px;
}
.swiper-button-next-notify:hover,
.swiper-button-prev-notify:hover {
	background: 0 0;
}
.swiper-button-next-notify {
	left: auto;
	right: 0;
	top: 12px;
}
.swiper-button-prev-notify {
	left: auto;
	right: 22px;
	top: 12px;
}
.btn-close {
	position: absolute;
	top: 5px;
	background: 0 0;
	right: 0;
	padding: 7px 22px 5px 22px;
	line-height: 14px;
	opacity: 1;
}
.btn-close svg {
	height: 16px;
}
.swiper-notify.swiper-container {
	padding-bottom: 0;
}
.box-search-top {
	position: relative;
}
.box-search-top .form-search-top {
	position: absolute;
	top: 54px;
	width: 220px;
	right: -20px;
	background-color: #fff;
	padding: 10px 15px;
	border-radius: 4px;
	border: 1px solid #ecf1f2;
	z-index: 123;
	display: none;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.box-search-top .form-search-top .input-search {
	border: 0 solid #ecf1f2;
	border-radius: 4px;
	padding: 5px 10px;
	width: 100%;
}
.box-search-top .form-search-top .btn-search {
	position: absolute;
	top: 0;
	right: 10px;
	z-index: 12;
	padding: 10px;
	height: 46px;
}
.box-search-top .form-search-top .btn-search svg {
	height: 16px;
	color: #4e6770;
}
.header-top-main {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1725490196);
}
.header-top-main .header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 0;
}
.header-top-main .header-top .arrow-down {
	cursor: pointer;
	background: url(../imgs/template/icons/globe.svg) no-repeat left top 1px;
	padding-left: 22px;
}
.header-top-main .icon-socials {
	margin-right: 0;
	height: 34px;
	width: 34px;
	line-height: 34px;
}
.header-top-main .burger-icon {
	top: 26px;
	right: 15px;
}
.header-top-sub {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1725490196);
}
.header-top-sub .btn-default {
	background-color: transparent;
}
.header-top-sub .btn-default:hover {
	border-radius: 8px;
}
.header-top-sub .btn-white {
	border-radius: 8px;
}
.header .header-top-sub .nav-main-menu {
	padding-left: 0;
}
.header .header-top-sub .main-header .header-left .header-right {
	width: 25%;
	min-width: 225px;
}
.header .header-top-sub .main-header .header-left .header-nav {
	width: 85%;
}
.header-homepage5 {
	background-color: transparent;
	position: absolute;
	z-index: 1234;
}
.header-homepage5 .main-header .header-left .header-nav {
	padding-left: 0;
}
.header-homepage5 .main-menu > li {
	padding: 13px 0 13px 0;
}
.mobile-header-wrapper-style {
	position: fixed;
	top: 0;
	max-width: 430px;
	width: 100%;
	min-height: 100vh;
	bottom: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
	background-color: #fff;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
	z-index: 1003;
	padding-top: 66px;
}
.mobile-header-wrapper-style.sidebar-visible {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner {
	padding: 0;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-logo {
	position: relative;
	border-bottom: 1px solid #cde2e7;
	padding: 15px 30px 15px 30px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-logo img {
	width: 60px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
	background-color: #fff;
	align-items: center;
	align-self: center;
	border-bottom: 0;
	margin-bottom: 15px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-top
	.mobile-header-logo
	a {
	display: block;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-top
	.mobile-header-logo
	a
	img {
	width: 100px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area {
	padding: 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu {
	max-width: 430px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li {
	display: block;
	position: relative;
	padding: 15px 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li:last-child {
	border-bottom: none;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li.has-children
	.menu-expand {
	right: 0;
	position: absolute;
	cursor: pointer;
	z-index: 9;
	text-align: center;
	font-size: 12px;
	display: block;
	width: 30px;
	height: 58px;
	line-height: 44px;
	top: 5px;
	color: #071920;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li.has-children
	.menu-expand
	i {
	font-size: 18px;
	font-weight: 300;
	opacity: 0.5;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li.has-children.active
	> .menu-expand {
	background: rgba(255, 255, 255, 0.2);
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li.has-children.active
	> .menu-expand
	i::before {
	content: "\f113";
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	a {
	font-size: 24px;
	line-height: 32px;
	font-family: "DM Sans", sans-serif;
	text-transform: capitalize;
	font-weight: 500;
	position: relative;
	display: inline-block;
	color: #181a1f;
	transition-duration: 0.2s;
	text-decoration: none;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	a
	i {
	margin-right: 5px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	a:hover {
	color: #06d6a0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul {
	padding: 15px 0 0 10px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li {
	padding: 0 0;
	border-bottom: none;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li.has-children
	.menu-expand {
	top: 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li:hover
	a {
	padding-left: 13px;
	transition-duration: 0.2s;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li
	a {
	font-size: 16px;
	line-height: 35px;
	display: block;
	font-weight: 400;
	color: #626262;
	padding-left: 10px;
	position: relative;
	transition-duration: 0.2s;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li
	ul {
	margin-top: 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li.has-children.active {
	padding-bottom: 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li.hr {
	padding: 0 0 0 10px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li
	ul
	li.hr
	span {
	background-color: #b9cad0;
	height: 1px;
	width: 100%;
	display: block;
	margin: 5px 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-menu-wrap
	nav
	.mobile-menu
	li:hover
	> a {
	color: #06d6a0;
	padding-left: 3px;
	transition-duration: 0.2s;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.categories-dropdown-wrap
	ul
	li
	a {
	padding: 5px 15px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap {
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #071920;
	margin: 17px 0 30px 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info {
	position: relative;
	margin-bottom: 13px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info:last-child {
	margin-bottom: 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	a {
	font-size: 14px;
	display: block;
	font-weight: 500;
	color: #071920;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	a:hover {
	color: #071920;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	a
	i {
	font-size: 14px;
	color: #071920;
	margin-right: 8px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	.lang-curr-dropdown {
	margin-top: 5px;
	display: none;
	background-color: transparent;
	box-shadow: none;
	padding: 10px 0 0 0;
	width: 100%;
	z-index: 11;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	.lang-curr-dropdown
	ul
	li {
	padding-bottom: 10px;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	.lang-curr-dropdown
	ul
	li:last-child {
	padding-bottom: 0;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	.lang-curr-dropdown
	ul
	li
	a {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info
	.lang-curr-dropdown
	ul
	li
	a:hover {
	color: #071920;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-info-wrap
	.single-mobile-header-info:hover
	> a {
	color: #071920;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-border {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.mobile-header-border
	nav {
	display: inline-block;
	width: 100%;
}
.mobile-header-wrapper-style
	.mobile-header-wrapper-inner
	.mobile-header-content-area
	.site-copyright {
	font-size: 12px;
	color: #071920;
	padding-bottom: 20px;
}
.burger-icon {
	position: absolute;
	width: 24px;
	height: 20px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
	top: 10px;
	right: 2px;
	z-index: 1004;
}
.burger-icon.burger-close {
	width: 20px;
}
.burger-icon > span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
}
.burger-icon > span.burger-icon-top {
	top: 2px;
}
.burger-icon > span.burger-icon-bottom {
	bottom: 2px;
}
.burger-icon > span.burger-icon-mid {
	top: 4px;
}
.burger-icon.burger-close {
	position: fixed;
	top: 23px;
	right: 15px;
}
.burger-icon.burger-close > span.burger-icon-top {
	display: none;
	opacity: 0;
}
.burger-icon.burger-close > span.burger-icon-mid {
	top: 8px;
	transform: rotate(45deg);
}
.burger-icon.burger-close > span.burger-icon-bottom {
	bottom: 10px;
	transform: rotate(-45deg);
}
.burger-icon > span::after,
.burger-icon > span::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #333;
}
.burger-icon.burger-icon-white > span::after,
.burger-icon.burger-icon-white > span::before {
	background-color: #fff;
}
.burger-icon.burger-close.burger-icon-white > span::after,
.burger-icon.burger-close.burger-icon-white > span::before {
	background-color: #fff;
}
.mobile-search form {
	background-color: #f0f2f6;
	border-radius: 8px;
	height: 44px;
	padding: 0 15px 0 44px;
	position: relative;
}
.mobile-search form input {
	border: 0;
	background-color: transparent;
	width: 100%;
	padding: 12px 10px;
}
.mobile-search form i {
	position: absolute;
	left: 18px;
	top: 14px;
	font-size: 18px;
	color: #122830;
}
.mobile-social-icon h6 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 30px;
}
.mobile-social-icon a {
	text-align: center;
	font-size: 14px;
	margin-right: 5px;
	transition-duration: 0.5s;
	height: 30px;
	width: 30px;
	display: inline-flex;
	background: #efeaff;
	border-radius: 30px;
	line-height: 1;
	align-content: center;
	justify-content: center;
}
.mobile-social-icon a img {
	max-width: 18px;
}
.mobile-social-icon a img:hover {
	opacity: 0.8;
}
.mobile-social-icon a:hover {
	transform: translateY(-2px);
	transition-duration: 0.5s;
	margin-top: -2px;
}
.mobile-social-icon a:last-child {
	margin-right: 0;
}
.mobile-account {
	margin: 20px 0 25px 0;
	padding: 30px 0 20px 0;
	border-top: thin solid #b9cad0;
	border-bottom: thin solid #b9cad0;
}
.mobile-account ul.mobile-menu {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}
.mobile-account h6 {
	font-weight: 600;
	font-size: 18px;
}
.mobile-account ul li {
	padding: 8px 0;
}
.mobile-account ul li a {
	font-size: 14px;
	line-height: 1;
	text-transform: capitalize;
	font-weight: 400;
	position: relative;
	display: inline-block;
	color: #071920;
	transition-duration: 0.2s;
	text-decoration: none;
}
.mobile-account ul li:hover a {
	padding-left: 3px;
	transition-duration: 0.2s;
	color: #071920;
}
.box-download-app {
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #cde2e7;
	border-top: 1px solid #cde2e7;
	margin-bottom: 20px;
	margin-top: 20px;
}
.nav-tabs-mobile {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
}
.nav-tabs-mobile li {
	padding: 0;
	position: relative;
}
.nav-tabs-mobile li a {
	padding: 10px;
	display: flex;
	font-size: 14px;
	line-height: 18px;
	font-weight: 700;
	color: #024430;
}
.nav-tabs-mobile li a svg {
	height: 14px;
	vertical-align: middle;
	float: left;
	margin: 2px 5px 0 0 !important;
	color: #024430;
}
.nav-tabs-mobile li a.active,
.nav-tabs-mobile li a:hover,
.nav-tabs-mobile li a:hover * {
	color: #06d6a0;
}
.nav-tabs-mobile li a.active::before,
.nav-tabs-mobile li a:hover ::before,
.nav-tabs-mobile li a:hover::before {
	content: "";
	height: 2px;
	width: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
	background-color: #06d6a0;
}
.nav-tabs-mobile li a.active * {
	color: #06d6a0;
}
.notifications-item {
	padding: 20px 0 0 0;
}
.notifications-item .item-notify {
	margin-bottom: 30px;
	display: flex;
}
.notifications-item .item-notify .item-image {
	min-width: 32px;
	max-width: 32px;
	width: 100%;
	margin-right: 15px;
}
.notifications-item .item-notify .item-info {
	width: 100%;
}
.notifications-item .item-notify .item-time {
	width: 63px;
	max-width: 63px;
	margin-left: 20px;
	min-width: 63px;
}
.footer {
	background-color: #000;
	background-image: url(../imgs/template/bg-footer.png);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: cover;
}
.footer .btn-download {
	border: 1px solid #fff;
	margin-bottom: 20px;
}
.footer .menu-footer {
	display: inline-block;
}
.footer .menu-footer li {
	list-style: none;
	margin-bottom: 8px;
}
.footer .menu-footer li a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 35px;
	text-decoration: none;
	display: block;
	padding: 0;
	transition-duration: 0.2s;
	letter-spacing: 0.3px;
}
.footer .menu-footer li a:hover {
	transition-duration: 0.2s;
	padding-left: 2px;
	text-decoration: underline;
}
.footer.footer-white {
	background-color: #fff;
	background-image: none;
}
.footer.footer-white .box-footer-top,
.footer.footer-white .footer-bottom {
	border-color: #e5e5e5;
}
.footer.footer-white .color-white,
.footer.footer-white .menu-bottom li a,
.footer.footer-white .menu-footer li a {
	color: #181a1f !important;
}
.footer.footer-white .menu-bottom li a:hover {
	text-decoration: underline;
}
.footer.footer-white .btn.btn-link-location {
	background-image: url(../imgs/page/homepage2/marker.svg);
	color: #181a1f !important;
	border-radius: 40px;
}
.footer.footer-white .btn.btn-link-location .active,
.footer.footer-white .btn.btn-link-location:hover {
	background-color: #fdeeec;
}
.footer.footer-white .btn.btn-link-globe {
	background-image: url(../imgs/template/icons/globe-black.svg);
	color: #181a1f !important;
	border-radius: 40px;
}
.footer.footer-white .btn.btn-link-globe.active,
.footer.footer-white .btn.btn-link-globe:hover {
	background-color: #fdeeec;
}
.footer.footer-white .icon-socials.icon-facebook {
	background: url(../imgs/template/icons/fb-black.svg) no-repeat center;
}
.footer.footer-white .icon-socials.icon-twitter {
	background: url(../imgs/template/icons/tw-black.svg) no-repeat center;
}
.footer.footer-white .icon-socials.icon-instagram {
	background: url(../imgs/template/icons/instagram-black.svg) no-repeat center;
}
.footer.footer-white .icon-socials.icon-linkedin {
	background: url(../imgs/template/icons/linkedin-black.svg) no-repeat center;
}
.footer.footer-bg-4 {
	background-color: #f6f6f6;
}
.footer.footer-bg-4 .btn.btn-link-globe.active,
.footer.footer-bg-4 .btn.btn-link-globe:hover,
.footer.footer-bg-4 .btn.btn-link-location.active,
.footer.footer-bg-4 .btn.btn-link-location:hover {
	background-color: #fff;
}
.footer.footer-3 {
	background-image: none;
}
.footer.footer-4 .btn.btn-link-location .active,
.footer.footer-4 .btn.btn-link-location:hover {
	background-color: #fff;
}
.footer.footer-4 .btn.btn-link-globe.active,
.footer.footer-4 .btn.btn-link-globe:hover {
	background-color: #fff;
}
.footer.footer-5 .box-footer-top {
	border-bottom: 0;
}
.footer.footer-6 {
	padding-top: 60px;
	background-image: none;
}
.width-20 {
	width: 20%;
}
.width-25 {
	width: 25%;
}
.footer-bottom {
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-bottom {
	display: inline-block;
}
.menu-bottom li {
	display: inline-block;
	color: #fff;
	padding: 0 15px;
}
.menu-bottom li a {
	color: #fff;
}
.menu-bottom li a:hover {
	color: #22c58b;
}
.bg-download {
	background-color: #fdeeec;
	background-image: url(../imgs/page/homepage1/bg-download.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 123px 0;
	position: relative;
}
.bg-download .container-sub {
	position: relative;
	z-index: 2;
}
.bg-download::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(../imgs/page/homepage1/phone.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
	z-index: 1;
}
.bg-download-2 {
	background-image: url(../imgs/page/homepage2/bg-download.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 123px 0;
	position: relative;
}
.bg-download-2 .container-sub {
	position: relative;
	z-index: 2;
}
.bg-download-2::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(../imgs/page/homepage1/phone.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
	z-index: 1;
}
.bg-download-3 {
	background-image: url(../imgs/page/homepage3/bg-download-3.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 123px 0;
	position: relative;
}
.bg-download-3 .container-sub {
	position: relative;
	z-index: 2;
}
.bg-download-3::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(../imgs/page/homepage1/phone.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
	z-index: 1;
}
#scrollUp {
	width: 56px;
	height: 56px;
	color: #fff;
	right: 20px;
	bottom: 20px;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	overflow: hidden;
	z-index: 999 !important;
	border: 0;
	background-color: #fff;
	transition-duration: 0.2s;
	background-color: #024430;
}
#scrollUp i {
	display: block;
	line-height: 56px !important;
	font-size: 20px;
	color: #fff;
}
#scrollUp:hover {
	transform: translateY(-3px);
	transition-duration: 0.2s;
	background-color: #066a4c;
}
footer a {
	text-decoration: none;
}
.icon-socials {
	display: inline-block;
	margin-right: 8px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	transition-duration: 0.2s;
	vertical-align: middle;
}
.icon-socials:last-child {
	margin-right: 0;
}
.icon-socials.icon-facebook {
	background: url(../imgs/template/icons/fb.svg) no-repeat center;
	transition-duration: 0.2s;
}
.icon-socials.icon-facebook:hover {
	background: url(../imgs/template/icons/fb.svg) no-repeat center;
	transition-duration: 0.2s;
	background-color: rgba(255, 255, 255, 0.2);
}
.icon-socials.icon-twitter {
	background: url(../imgs/template/icons/tw.svg) no-repeat center;
	transition-duration: 0.2s;
}
.icon-socials.icon-twitter:hover {
	background: url(../imgs/template/icons/tw.svg) no-repeat center;
	transition-duration: 0.2s;
	background-color: rgba(255, 255, 255, 0.2);
}
.icon-socials.icon-instagram {
	background: url(../imgs/template/icons/instagram.svg) no-repeat center;
	transition-duration: 0.2s;
}
.icon-socials.icon-instagram:hover {
	background: url(../imgs/template/icons/instagram.svg) no-repeat center;
	transition-duration: 0.2s;
	background-color: rgba(255, 255, 255, 0.2);
}
.icon-socials.icon-linkedin {
	background: url(../imgs/template/icons/linkedin.svg) no-repeat center;
	transition-duration: 0.2s;
}
.icon-socials.icon-linkedin:hover {
	background: url(../imgs/template/icons/linkedin.svg) no-repeat center;
	transition-duration: 0.2s;
	background-color: rgba(255, 255, 255, 0.2);
}
.icon-socials:hover {
	transform: translateY(-3px);
	transition-duration: 0.2s;
	border-radius: 50%;
}
.footer-white .icon-socials:hover {
	background-color: #fdeeec !important;
}
.box-footer-top {
	padding: 30px 0 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 60px;
}
.section-padding-30 {
	padding: 30px 0;
}
.section-padding-50 {
	padding: 50px 0;
}
.section-padding-60 {
	padding: 60px 0;
}
.section-padding {
	padding: 25px 0;
}
.ml-3 {
	margin-left: 3px;
}
.ptb-0 {
	padding: 0;
}
.ptb-10 {
	padding: 10px 0;
}
.ptb-20 {
	padding: 20px 0;
}
.ptb-30 {
	padding: 30px 0;
}
.ptb-35 {
	padding: 35px 0;
}
.ptb-32 {
	padding: 32px 0;
}
.ptb-40 {
	padding: 40px 0;
}
.ptb-50 {
	padding: 50px 0;
}
.ptb-60 {
	padding: 60px 0;
}
.ptb-70 {
	padding: 70px 0;
}
.ptb-80 {
	padding: 80px 0;
}
.ptb-90 {
	padding: 90px 0;
}
.ptb-100 {
	padding: 100px 0;
}
.ptb-110 {
	padding: 110px 0;
}
.ptb-120 {
	padding: 120px 0;
}
.ptb-130 {
	padding: 130px 0;
}
.ptb-140 {
	padding: 140px 0;
}
.ptb-150 {
	padding: 150px 0;
}
.ptb-160 {
	padding: 160px 0;
}
.ptb-170 {
	padding: 170px 0;
}
.ptb-177 {
	padding: 177px 0;
}
.ptb-180 {
	padding: 180px 0;
}
.ptb-190 {
	padding: 190px 0;
}
.ptb-200 {
	padding: 200px 0;
}
.ptb-210 {
	padding: 210px 0;
}
.ptb-220 {
	padding: 220px 0;
}
.ptb-290 {
	padding: 290px 0;
}
.ptb-310 {
	padding: 310px 0;
}
.p-10 {
	padding: 10px !important;
}
.p-15 {
	padding: 15px !important;
}
.p-20 {
	padding: 20px !important;
}
.p-25 {
	padding: 25px !important;
}
.p-30 {
	padding: 30px !important;
}
.p-40 {
	padding: 40px !important;
}
.p-65 {
	padding: 65px !important;
}
.pt-5 {
	padding-top: 5px !important;
}
.pt-10 {
	padding-top: 10px !important;
}
.pt-15 {
	padding-top: 15px !important;
}
.pt-20 {
	padding-top: 20px !important;
}
.pt-25 {
	padding-top: 25px !important;
}
.pt-30 {
	padding-top: 30px !important;
}
.pt-35 {
	padding-top: 35px !important;
}
.pt-40 {
	padding-top: 40px !important;
}
.pt-45 {
	padding-top: 45px !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pt-55 {
	padding-top: 55px !important;
}
.pt-60 {
	padding-top: 60px !important;
}
.pt-65 {
	padding-top: 65px !important;
}
.pt-70 {
	padding-top: 70px !important;
}
.pt-75 {
	padding-top: 75px !important;
}
.pt-80 {
	padding-top: 80px !important;
}
.pt-85 {
	padding-top: 85px !important;
}
.pt-90 {
	padding-top: 90px !important;
}
.pt-95 {
	padding-top: 95px !important;
}
.pt-100 {
	padding-top: 100px !important;
}
.pt-105 {
	padding-top: 105px !important;
}
.pt-110 {
	padding-top: 110px !important;
}
.pt-115 {
	padding-top: 115px !important;
}
.pt-120 {
	padding-top: 120px !important;
}
.pt-125 {
	padding-top: 125px !important;
}
.pt-130 {
	padding-top: 130px !important;
}
.pt-135 {
	padding-top: 135px !important;
}
.pt-140 {
	padding-top: 140px !important;
}
.pt-145 {
	padding-top: 145px !important;
}
.pt-150 {
	padding-top: 150px !important;
}
.pt-155 {
	padding-top: 155px !important;
}
.pt-160 {
	padding-top: 160px !important;
}
.pt-165 {
	padding-top: 165px !important;
}
.pt-170 {
	padding-top: 170px !important;
}
.pt-175 {
	padding-top: 175px !important;
}
.pt-180 {
	padding-top: 180px !important;
}
.pt-185 {
	padding-top: 185px !important;
}
.pt-190 {
	padding-top: 190px !important;
}
.pt-195 {
	padding-top: 195px !important;
}
.pt-200 {
	padding-top: 200px !important;
}
.pt-260 {
	padding-top: 260px !important;
}
.pb-5 {
	padding-bottom: 5px !important;
}
.pb-10 {
	padding-bottom: 10px !important;
}
.pb-15 {
	padding-bottom: 15px !important;
}
.pb-20 {
	padding-bottom: 20px !important;
}
.pb-25 {
	padding-bottom: 25px !important;
}
.pb-30 {
	padding-bottom: 30px !important;
}
.pb-35 {
	padding-bottom: 35px !important;
}
.pb-40 {
	padding-bottom: 40px !important;
}
.pb-45 {
	padding-bottom: 45px !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}
.pb-55 {
	padding-bottom: 55px !important;
}
.pb-60 {
	padding-bottom: 60px !important;
}
.pb-65 {
	padding-bottom: 65px !important;
}
.pb-70 {
	padding-bottom: 70px !important;
}
.pb-75 {
	padding-bottom: 75px !important;
}
.pb-80 {
	padding-bottom: 80px !important;
}
.pb-85 {
	padding-bottom: 85px !important;
}
.pb-90 {
	padding-bottom: 90px !important;
}
.pb-95 {
	padding-bottom: 95px !important;
}
.pb-100 {
	padding-bottom: 100px !important;
}
.pb-105 {
	padding-bottom: 105px !important;
}
.pb-110 {
	padding-bottom: 110px !important;
}
.pb-115 {
	padding-bottom: 115px !important;
}
.pb-120 {
	padding-bottom: 120px !important;
}
.pb-125 {
	padding-bottom: 125px !important;
}
.pb-130 {
	padding-bottom: 130px !important;
}
.pb-135 {
	padding-bottom: 135px !important;
}
.pb-140 {
	padding-bottom: 140px !important;
}
.pb-145 {
	padding-bottom: 145px !important;
}
.pb-150 {
	padding-bottom: 150px !important;
}
.pb-155 {
	padding-bottom: 155px !important;
}
.pb-160 {
	padding-bottom: 160px !important;
}
.pb-165 {
	padding-bottom: 165px !important;
}
.pb-170 {
	padding-bottom: 170px !important;
}
.pb-175 {
	padding-bottom: 175px !important;
}
.pb-180 {
	padding-bottom: 180px !important;
}
.pb-185 {
	padding-bottom: 185px !important;
}
.pb-190 {
	padding-bottom: 190px !important;
}
.pb-195 {
	padding-bottom: 195px !important;
}
.pb-200 {
	padding-bottom: 200px !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pl-5 {
	padding-left: 5px !important;
}
.pl-10 {
	padding-left: 10px !important;
}
.pl-15 {
	padding-left: 15px !important;
}
.pl-20 {
	padding-left: 20px !important;
}
.pl-25 {
	padding-left: 25px !important;
}
.pl-30 {
	padding-left: 30px !important;
}
.pl-35 {
	padding-left: 35px !important;
}
.pl-40 {
	padding-left: 40px !important;
}
.pl-45 {
	padding-left: 45px !important;
}
.pl-50 {
	padding-left: 50px !important;
}
.pl-55 {
	padding-left: 55px !important;
}
.pl-60 {
	padding-left: 60px !important;
}
.pl-65 {
	padding-left: 65px !important;
}
.pl-70 {
	padding-left: 70px !important;
}
.pl-75 {
	padding-left: 75px !important;
}
.pl-80 {
	padding-left: 80px !important;
}
.pl-85 {
	padding-left: 85px !important;
}
.pl-90 {
	padding-left: 90px !important;
}
.pl-95 {
	padding-left: 95px !important;
}
.pl-100 {
	padding-left: 100px !important;
}
.pl-105 {
	padding-left: 105px !important;
}
.pl-110 {
	padding-left: 110px !important;
}
.pl-115 {
	padding-left: 115px !important;
}
.pl-120 {
	padding-left: 120px !important;
}
.pl-125 {
	padding-left: 125px !important;
}
.pl-130 {
	padding-left: 130px !important;
}
.pl-135 {
	padding-left: 135px !important;
}
.pl-140 {
	padding-left: 140px !important;
}
.pl-145 {
	padding-left: 145px !important;
}
.pl-150 {
	padding-left: 150px !important;
}
.pl-155 {
	padding-left: 155px !important;
}
.pl-160 {
	padding-left: 160px !important;
}
.pl-165 {
	padding-left: 165px !important;
}
.pl-170 {
	padding-left: 170px !important;
}
.pl-175 {
	padding-left: 175px !important;
}
.pl-180 {
	padding-left: 180px !important;
}
.pl-185 {
	padding-left: 185px !important;
}
.pl-190 {
	padding-left: 190px !important;
}
.pl-195 {
	padding-left: 195px !important;
}
.pl-200 {
	padding-left: 200px !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pr-5 {
	padding-right: 5px !important;
}
.pr-10 {
	padding-right: 10px !important;
}
.pr-15 {
	padding-right: 15px !important;
}
.pr-20 {
	padding-right: 20px !important;
}
.pr-25 {
	padding-right: 25px !important;
}
.pr-30 {
	padding-right: 30px !important;
}
.pr-35 {
	padding-right: 35px !important;
}
.pr-40 {
	padding-right: 40px !important;
}
.pr-45 {
	padding-right: 45px !important;
}
.pr-50 {
	padding-right: 50px !important;
}
.pr-55 {
	padding-right: 55px !important;
}
.pr-60 {
	padding-right: 60px !important;
}
.pr-65 {
	padding-right: 65px !important;
}
.pr-70 {
	padding-right: 70px !important;
}
.pr-75 {
	padding-right: 75px !important;
}
.pr-80 {
	padding-right: 80px !important;
}
.pr-85 {
	padding-right: 85px !important;
}
.pr-90 {
	padding-right: 90px !important;
}
.pr-95 {
	padding-right: 95px !important;
}
.pr-100 {
	padding-right: 100px !important;
}
.pr-105 {
	padding-right: 105px !important;
}
.pr-110 {
	padding-right: 110px !important;
}
.pr-115 {
	padding-right: 115px !important;
}
.pr-120 {
	padding-right: 120px !important;
}
.pr-125 {
	padding-right: 125px !important;
}
.pr-130 {
	padding-right: 130px !important;
}
.pr-135 {
	padding-right: 135px !important;
}
.pr-140 {
	padding-right: 140px !important;
}
.pr-145 {
	padding-right: 145px !important;
}
.pr-150 {
	padding-right: 150px !important;
}
.pr-155 {
	padding-right: 155px !important;
}
.pr-160 {
	padding-right: 160px !important;
}
.pr-165 {
	padding-right: 165px !important;
}
.pr-170 {
	padding-right: 170px !important;
}
.pr-175 {
	padding-right: 175px !important;
}
.pr-180 {
	padding-right: 180px !important;
}
.pr-185 {
	padding-right: 185px !important;
}
.pr-190 {
	padding-right: 190px !important;
}
.pr-195 {
	padding-right: 195px !important;
}
.pr-200 {
	padding-right: 200px !important;
}
.plr-5-percent {
	padding: 0 5%;
}
.mtb-0 {
	margin: 0;
}
.mtb-10 {
	margin: 10px 0;
}
.mtb-15 {
	margin: 15px 0;
}
.mtb-20 {
	margin: 20px 0;
}
.mtb-30 {
	margin: 30px 0;
}
.mtb-40 {
	margin: 40px 0;
}
.mtb-50 {
	margin: 50px 0;
}
.mtb-60 {
	margin: 60px 0;
}
.mtb-70 {
	margin: 70px 0;
}
.mtb-80 {
	margin: 80px 0;
}
.mtb-90 {
	margin: 90px 0;
}
.mtb-100 {
	margin: 100px 0;
}
.mtb-110 {
	margin: 110px 0;
}
.mtb-120 {
	margin: 120px 0;
}
.mtb-130 {
	margin: 130px 0;
}
.mtb-140 {
	margin: 140px 0;
}
.mtb-150 {
	margin: 150px 0;
}
.mtb-290 {
	margin: 290px 0;
}
.mb-24 {
	margin-bottom: 24px;
}
.mt-5 {
	margin-top: 5px !important;
}
.mt-8 {
	margin-top: 8px !important;
}
.mt-10 {
	margin-top: 10px !important;
}
.mt-15 {
	margin-top: 15px !important;
}
.mt-20 {
	margin-top: 20px !important;
}
.mt-25 {
	margin-top: 25px !important;
}
.mt-30 {
	margin-top: 30px !important;
}
.mt-35 {
	margin-top: 35px !important;
}
.mt-40 {
	margin-top: 40px !important;
}
.mt-45 {
	margin-top: 45px !important;
}
.mt-50 {
	margin-top: 50px !important;
}
.mt-55 {
	margin-top: 55px !important;
}
.mt-60 {
	margin-top: 60px !important;
}
.mt-65 {
	margin-top: 65px !important;
}
.mt-70 {
	margin-top: 70px !important;
}
.mt-75 {
	margin-top: 75px !important;
}
.mt-80 {
	margin-top: 80px !important;
}
.mt-85 {
	margin-top: 85px !important;
}
.mt-90 {
	margin-top: 90px !important;
}
.mt-95 {
	margin-top: 95px !important;
}
.mt-100 {
	margin-top: 100px !important;
}
.mt-105 {
	margin-top: 105px !important;
}
.mt-110 {
	margin-top: 110px !important;
}
.mt-115 {
	margin-top: 115px !important;
}
.mt-120 {
	margin-top: 120px !important;
}
.mt-125 {
	margin-top: 125px !important;
}
.mt-130 {
	margin-top: 130px !important;
}
.mt-135 {
	margin-top: 135px !important;
}
.mt-140 {
	margin-top: 140px !important;
}
.mt-145 {
	margin-top: 145px !important;
}
.mt-150 {
	margin-top: 150px !important;
}
.mt-155 {
	margin-top: 155px !important;
}
.mt-160 {
	margin-top: 160px !important;
}
.mt-165 {
	margin-top: 165px !important;
}
.mt-170 {
	margin-top: 170px !important;
}
.mt-175 {
	margin-top: 175px !important;
}
.mt-180 {
	margin-top: 180px !important;
}
.mt-185 {
	margin-top: 185px !important;
}
.mt-190 {
	margin-top: 190px !important;
}
.mt-195 {
	margin-top: 195px !important;
}
.mt-200 {
	margin-top: 200px !important;
}
.mb-5 {
	margin-bottom: 5px !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}
.mb-15 {
	margin-bottom: 15px !important;
}
.mb-20 {
	margin-bottom: 20px !important;
}
.mb-25 {
	margin-bottom: 25px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}
.mb-35 {
	margin-bottom: 35px !important;
}
.mb-40 {
	margin-bottom: 40px !important;
}
.mb-45 {
	margin-bottom: 45px !important;
}
.mb-50 {
	margin-bottom: 50px !important;
}
.mb-55 {
	margin-bottom: 55px !important;
}
.mb-60 {
	margin-bottom: 60px !important;
}
.mb-65 {
	margin-bottom: 65px !important;
}
.mb-70 {
	margin-bottom: 70px !important;
}
.mb-75 {
	margin-bottom: 75px !important;
}
.mb-80 {
	margin-bottom: 80px !important;
}
.mb-85 {
	margin-bottom: 85px !important;
}
.mb-90 {
	margin-bottom: 90px !important;
}
.mb-95 {
	margin-bottom: 95px !important;
}
.mb-100 {
	margin-bottom: 100px !important;
}
.mb-105 {
	margin-bottom: 105px !important;
}
.mb-110 {
	margin-bottom: 110px !important;
}
.mb-115 {
	margin-bottom: 115px !important;
}
.mb-120 {
	margin-bottom: 120px !important;
}
.mb-125 {
	margin-bottom: 125px !important;
}
.mb-130 {
	margin-bottom: 130px !important;
}
.mb-135 {
	margin-bottom: 135px !important;
}
.mb-140 {
	margin-bottom: 140px !important;
}
.mb-145 {
	margin-bottom: 145px !important;
}
.mb-150 {
	margin-bottom: 150px !important;
}
.mb-155 {
	margin-bottom: 155px !important;
}
.mb-160 {
	margin-bottom: 160px !important;
}
.mb-165 {
	margin-bottom: 165px !important;
}
.mb-170 {
	margin-bottom: 170px !important;
}
.mb-175 {
	margin-bottom: 175px !important;
}
.mb-180 {
	margin-bottom: 180px !important;
}
.mb-185 {
	margin-bottom: 185px !important;
}
.mb-190 {
	margin-bottom: 190px !important;
}
.mb-195 {
	margin-bottom: 195px !important;
}
.mb-200 {
	margin-bottom: 200px !important;
}
.ml-0 {
	margin-left: 0 !important;
}
.ml-5 {
	margin-left: 5px !important;
}
.ml-10 {
	margin-left: 10px !important;
}
.ml-15 {
	margin-left: 15px !important;
}
.ml-20 {
	margin-left: 20px !important;
}
.ml-25 {
	margin-left: 25px !important;
}
.ml-30 {
	margin-left: 30px !important;
}
.ml-35 {
	margin-left: 35px !important;
}
.ml-40 {
	margin-left: 40px !important;
}
.ml-45 {
	margin-left: 45px !important;
}
.ml-50 {
	margin-left: 50px !important;
}
.ml-55 {
	margin-left: 55px !important;
}
.ml-60 {
	margin-left: 60px !important;
}
.ml-65 {
	margin-left: 65px !important;
}
.ml-70 {
	margin-left: 70px !important;
}
.ml-75 {
	margin-left: 75px !important;
}
.ml-80 {
	margin-left: 80px !important;
}
.ml-85 {
	margin-left: 85px !important;
}
.ml-90 {
	margin-left: 90px !important;
}
.ml-95 {
	margin-left: 95px !important;
}
.ml-100 {
	margin-left: 100px !important;
}
.ml-105 {
	margin-left: 105px !important;
}
.ml-110 {
	margin-left: 110px !important;
}
.ml-115 {
	margin-left: 115px !important;
}
.ml-120 {
	margin-left: 120px !important;
}
.ml-125 {
	margin-left: 125px !important;
}
.ml-130 {
	margin-left: 130px !important;
}
.ml-135 {
	margin-left: 135px !important;
}
.ml-140 {
	margin-left: 140px !important;
}
.ml-145 {
	margin-left: 145px !important;
}
.ml-150 {
	margin-left: 150px !important;
}
.ml-155 {
	margin-left: 155px !important;
}
.ml-160 {
	margin-left: 160px !important;
}
.ml-165 {
	margin-left: 165px !important;
}
.ml-170 {
	margin-left: 170px !important;
}
.ml-175 {
	margin-left: 175px !important;
}
.ml-180 {
	margin-left: 180px !important;
}
.ml-185 {
	margin-left: 185px !important;
}
.ml-190 {
	margin-left: 190px !important;
}
.ml-195 {
	margin-left: 195px !important;
}
.ml-200 {
	margin-left: 200px !important;
}
.mr-5 {
	margin-right: 5px !important;
}
.mr-10 {
	margin-right: 10px !important;
}
.mr-15 {
	margin-right: 15px !important;
}
.mr-20 {
	margin-right: 20px !important;
}
.mr-25 {
	margin-right: 25px !important;
}
.mr-30 {
	margin-right: 30px !important;
}
.mr-35 {
	margin-right: 35px !important;
}
.mr-40 {
	margin-right: 40px !important;
}
.mr-45 {
	margin-right: 45px !important;
}
.mr-50 {
	margin-right: 50px !important;
}
.mr-55 {
	margin-right: 55px !important;
}
.mr-60 {
	margin-right: 60px !important;
}
.mr-65 {
	margin-right: 65px !important;
}
.mr-70 {
	margin-right: 70px !important;
}
.mr-75 {
	margin-right: 75px !important;
}
.mr-80 {
	margin-right: 80px !important;
}
.mr-85 {
	margin-right: 85px !important;
}
.mr-90 {
	margin-right: 90px !important;
}
.mr-95 {
	margin-right: 95px !important;
}
.mr-100 {
	margin-right: 100px !important;
}
.mr-105 {
	margin-right: 105px !important;
}
.mr-110 {
	margin-right: 110px !important;
}
.mr-115 {
	margin-right: 115px !important;
}
.mr-120 {
	margin-right: 120px !important;
}
.mr-125 {
	margin-right: 125px !important;
}
.mr-130 {
	margin-right: 130px !important;
}
.mr-135 {
	margin-right: 135px !important;
}
.mr-140 {
	margin-right: 140px !important;
}
.mr-145 {
	margin-right: 145px !important;
}
.mr-150 {
	margin-right: 150px !important;
}
.mr-155 {
	margin-right: 155px !important;
}
.mr-160 {
	margin-right: 160px !important;
}
.mr-165 {
	margin-right: 165px !important;
}
.mr-170 {
	margin-right: 170px !important;
}
.mr-175 {
	margin-right: 175px !important;
}
.mr-180 {
	margin-right: 180px !important;
}
.mr-185 {
	margin-right: 185px !important;
}
.mr-190 {
	margin-right: 190px !important;
}
.mr-195 {
	margin-right: 195px !important;
}
.mr-200 {
	margin-right: 200px !important;
}
.box-author {
	display: flex;
	align-items: center;
}
.box-author img {
	max-width: 56px;
	height: 56px;
	width: 56px;
	border-radius: 50%;
	margin-right: 10px;
}
.box-author .author-info .author-name {
	display: block;
}
.box-author .author-info img {
	width: 12px;
	height: auto;
	border-radius: 0;
	margin-right: 0;
	max-width: 100%;
}
.list-faqs {
	padding: 0;
	margin: 0;
	list-style: none;
	border: 0;
}
.list-faqs li {
	margin-bottom: 15px;
	width: 100%;
}
.list-faqs li a {
	display: flex;
	padding: 14px 26px 16px 26px;
	border: 1px solid #ecf1f2;
	color: #4e6770;
	border-radius: 4px;
	text-decoration: none;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
}
.list-faqs li a span {
	width: 100%;
	display: inline-block;
}
.list-faqs li a svg {
	display: inline-block;
	margin-top: 4px;
	transition-duration: 0.2s;
}
.list-faqs li a.active,
.list-faqs li a:hover {
	background-color: #066a4c;
	color: #ffe7bb !important;
}
.list-faqs li a.active *,
.list-faqs li a.active svg,
.list-faqs li a:hover *,
.list-faqs li a:hover svg {
	color: #ffe7bb !important;
}
.list-faqs li a:hover svg {
	transform: rotate(-45deg);
	transition-duration: 0.2s;
}
.accordion {
	background: #fff;
}
.accordion .accordion-item {
	padding: 10px;
	border-bottom: 1px solid #e5e5e5;
	transition: all 0.4s ease;
}
.accordion .accordion-button {
	font-size: 20px;
	line-height: 32px;
	font-weight: 500;
	color: #181a1f;
	border: 0;
	padding: 20px 0 20px 0;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	background-color: #fff;
	transition: all 0.4s ease;
}
.accordion .accordion-collapse {
	border-width: 0 0;
	background-color: #fff;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	transition: all 0.4s ease;
}
.accordion .accordion-body {
	padding: 0 0 30px 0;
	font-size: 16px;
	line-height: 28px;
	transition: all 0.4s ease;
	color: #000;
}
.accordion-button::after {
	width: 30px;
	height: 30px;
	background-image: url(../imgs/template/icons/plus.svg);
	background-size: 30px;
}
.accordion-button:not(.collapsed) {
	background-color: #fff;
}
.accordion-button:not(.collapsed)::after {
	background-image: url(../imgs/template/icons/minus.svg);
}
.box-search-ride {
	background-color: #fff;
	border-radius: 100px;
	padding: 20px 5px;
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 3;
	max-width: 1170px;
	display: flex;
	align-items: center;
}
.box-search-ride .search-item {
	width: 100%;
	display: flex;
	padding: 0 15px;
	align-items: center;
	position: relative;
}
.box-search-ride .search-item .search-icon {
	max-width: 52px;
	width: 100%;
	min-width: 52px;
	margin-right: 15px;
}
.box-search-ride .search-item .search-icon .item-icon {
	display: inline-block;
	width: 52px;
	height: 52px;
	border-radius: 100%;
	background-color: #f6f6f6;
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.box-search-ride .search-item .search-icon .item-icon.icon-date {
	background-image: url(../imgs/template/icons/calendar.svg);
}
.box-search-ride .search-item .search-icon .item-icon.icon-time {
	background-image: url(../imgs/template/icons/time.svg);
}
.box-search-ride .search-item .search-icon .item-icon.icon-from {
	background-image: url(../imgs/template/icons/from.svg);
}
.box-search-ride .search-item .search-icon .item-icon.icon-to {
	background-image: url(../imgs/template/icons/to.svg);
}
.box-search-ride .search-item .search-inputs {
	width: 100%;
}
.box-search-ride .search-item .search-inputs .search-input {
	width: 100%;
	display: inline-block;
	padding: 0;
	border: 0;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #181a1f;
	background-color: transparent;
}
.box-search-ride .search-button {
	max-width: 161px;
	min-width: 161px;
}
.box-search-ride .search-time {
	max-width: 200px;
	min-width: 200px;
}
.box-search-ride .search-date {
	max-width: 230px;
	min-width: 230px;
}
.list-logos {
	display: flex;
	align-items: center;
}
.list-logos li {
	width: 100%;
	text-align: right;
}
.icon-16 {
	height: 16px;
}
.bg-our-fleet {
	background-image: url(../imgs/page/homepage1/bg-our-fleet.png);
	background-repeat: no-repeat;
	background-position: left top 230px;
}
.box-pagination-fleet {
	position: relative;
	margin-top: 60px;
}
.swiper-button-prev-fleet {
	margin-right: 15px;
}
.swiper-button-next-fleet,
.swiper-button-prev-fleet {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
}
.swiper-button-next-fleet,
.swiper-button-prev-fleet {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1px solid #e5e5e5;
	line-height: 67px;
	text-align: center;
	display: inline-block;
	background-image: none;
}
.swiper-button-next-fleet svg,
.swiper-button-prev-fleet svg {
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	color: #181a1f;
}
.swiper-button-next-fleet:hover,
.swiper-button-prev-fleet:hover {
	border-color: #181a1f;
	background-color: #f6f6f6;
}
.bg-our-service-2 .swiper-button-next-fleet,
.bg-our-service-2 .swiper-button-prev-fleet {
	line-height: 67px;
}
.bg-our-service-2 .swiper-button-next-fleet svg,
.bg-our-service-2 .swiper-button-prev-fleet svg {
	color: #fff;
	height: 20px;
}
.bg-our-service-2 .swiper-button-next-fleet:hover svg,
.bg-our-service-2 .swiper-button-prev-fleet:hover svg {
	color: #181a1f;
}
.slider-nav-thumbnails {
	max-width: 439px;
	margin: auto 0 auto auto;
}
.list-how.slider-nav-thumbnails {
	list-style: none;
	padding: 0;
	margin: 0;
}
.list-how.slider-nav-thumbnails .slick-list .slick-track li {
	padding-bottom: 60px;
	position: relative;
	padding-left: 50px;
	cursor: pointer;
}
.list-how.slider-nav-thumbnails .slick-list .slick-track li .line-white {
	display: none;
	height: 56px;
	width: 3px;
	position: absolute;
	top: 36px;
	border-radius: 60px;
	background-color: #fff;
	left: 8px;
}
.list-how.slider-nav-thumbnails .slick-list .slick-track li::before {
	content: "";
	height: 20px;
	width: 20px;
	border: 1px solid #fff;
	border-radius: 50%;
	opacity: 0.6;
	position: absolute;
	top: 6px;
	left: 0;
}
.list-how.slider-nav-thumbnails .slick-list .slick-track li::after {
	content: "";
	bottom: 4px;
	width: 3px;
	opacity: 0.2;
	position: absolute;
	top: 36px;
	background-color: #fff;
	left: 8px;
	border-radius: 60px;
}
.list-how.slider-nav-thumbnails .slick-list .slick-track li h4,
.list-how.slider-nav-thumbnails .slick-list .slick-track li p {
	color: #fff;
	opacity: 0.6;
}
.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li.slick-current::before {
	opacity: 1;
}
.list-how.slider-nav-thumbnails .slick-list .slick-track li.slick-current h4,
.list-how.slider-nav-thumbnails .slick-list .slick-track li.slick-current p {
	opacity: 1;
}
.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li.slick-current
	.line-white {
	display: block;
}
.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li.slick-active:last-child::after {
	display: none;
}
.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li.slick-active:last-child
	.line-white {
	display: none;
}
.box-main-slider {
	width: 100%;
	position: absolute;
	top: 15%;
	right: 0;
	max-width: 52%;
}
.detail-gallery {
	display: inline-block;
	vertical-align: middle;
	min-height: 510px;
	width: 100%;
	position: relative;
	z-index: 4;
}
.detail-gallery .main-image-slider .slick-slide {
	display: flex;
	align-items: center;
	max-height: 630px;
	width: 100%;
	text-align: right;
}
.detail-gallery .main-image-slider .slick-slide img {
	max-height: 600px;
	max-width: 100%;
}
.bg-how-it-works {
	position: relative;
}
.bg-how-it-works::before {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(../imgs/page/homepage1/line.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.bg-how-it-works .position-z3 {
	position: relative;
	z-index: 3;
}
.box-faqs {
	max-width: 770px;
	margin: auto;
}
.bg-showcase {
	background-color: #e95440;
	background-image: url(../imgs/page/homepage1/bg-showcase.png);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
	border-radius: 6px;
	padding-left: 20px;
	padding-right: 20px;
}
.bg-our-service {
	background-image: url(../imgs/page/homepage1/bg-our-service.png);
	background-repeat: no-repeat;
	background-position: right top -460px;
}
.bg-faqs {
	background-image: url(../imgs/page/homepage1/bg-faqs.png);
	background-repeat: no-repeat;
	background-position: left -100px bottom 50px;
}
.box-showcase {
	padding-left: 60px;
	padding-right: 60px;
}
.box-quote {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}
.box-quote .icon-quote {
	height: 70px;
	width: 70px;
	border-radius: 6px;
	background-color: #fff;
	background-image: url(../imgs/page/homepage1/quote.png);
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 20px;
}
.content-quote {
	font-size: 24px;
	line-height: 40px;
	color: #fff;
	font-weight: 500;
}
.box-video {
	max-width: 370px;
	width: 100%;
	position: relative;
	border-radius: 6px;
	display: inline-block;
}
.box-video img {
	border-radius: 6px;
	width: 100%;
}
.box-video .btn-play {
	position: absolute;
	height: 100px;
	width: 100px;
	top: 50%;
	left: -50px;
	margin-top: -50px;
	background-image: url(../imgs/page/homepage1/play-icon.svg);
	background-repeat: no-repeat;
	background-position: center;
	z-index: 2;
}
.cardIconStyleCircle .cardIconTitleDesc .cardIcon {
	position: relative;
}
.cardIconStyleCircle .cardIconTitleDesc .cardIcon::before {
	content: "";
	height: 60px;
	width: 60px;
	background-color: #fdeeec;
	border-radius: 50%;
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
.cardIconStyleCircle .cardIconTitleDesc .cardIcon img {
	position: relative;
	z-index: 2;
}
.box-gallery {
	display: flex;
}
.box-gallery .gallery-1 {
	width: 311px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.box-gallery .gallery-1 img {
	border-radius: 6px;
}
.box-gallery .gallery-2 {
	width: 249px;
}
.box-gallery .gallery-2 img {
	margin-bottom: 10px;
	display: block;
	border-radius: 6px;
}
.box-region-right {
	padding-left: 110px;
}
.bg-region {
	background-image: url(../imgs/page/homepage1/maps.png);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
}
.tags a {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
}
.box-pagination-testimonials {
	position: relative;
	display: inline-block;
}
.box-pagination-testimonials .firstNumber,
.box-pagination-testimonials .lastNumber {
	position: absolute;
	top: 3px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #fff;
}
.box-pagination-testimonials .firstNumber {
	left: 0;
}
.box-pagination-testimonials .lastNumber {
	right: 0;
}
.box-pagination-testimonials .swiper-pagination.swiper-pagination-testimonials {
	text-align: left;
	position: relative;
	padding: 0 34px 0 30px;
}
.box-pagination-testimonials
	.swiper-pagination.swiper-pagination-testimonials
	.swiper-pagination-bullet {
	width: 50px;
	height: 2px;
	display: inline-block;
	background: #fff;
	opacity: 0.2;
	margin: 0;
	border-radius: 0;
}
.box-pagination-testimonials
	.swiper-pagination.swiper-pagination-testimonials
	.swiper-pagination-bullet-active {
	opacity: 1;
	width: 50px;
	height: 2px;
}
.box-testimonials {
	background-image: url(../imgs/page/homepage1/bg-testimonials.png);
	background-repeat: no-repeat;
	background-position: top right 35%;
}
.box-list-how {
	position: relative;
}
.box-list-how ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}
.box-list-how ul li {
	width: 100%;
	padding-right: 0;
	display: block;
	height: 100%;
}
.box-list-how ul li .cardWork {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.box-list-how ul li .cardDesc {
	flex-grow: 1;
}
.box-list-how ul li:last-child {
	padding-right: 0;
}
.box-list-how ul li.has-arrow {
	background-image: url(../imgs/page/homepage2/arrow-button.svg);
	background-repeat: no-repeat;
	background-position: right 60px top 80px;
}
.box-fleet-cover {
	padding-left: 100px;
	padding-right: 100px;
}
.box-fleet-padding {
	background-color: #f6f6f6;
	border-radius: 12px;
	padding-top: 120px;
	padding-bottom: 120px;
	background-image: url(../imgs/page/homepage2/bg-line.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.box-image-showcase {
	position: relative;
}
.box-image-showcase > img {
	border-radius: 6px;
	display: block;
}
.box-btn-play-video {
	position: absolute;
	bottom: 20px;
	left: 20px;
}
.box-btn-play-video .btn-white {
	border-radius: 6px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
}
.box-btn-play-video .btn-white:hover {
	background-color: #e95440;
}
.box-number-info {
	border: 1px solid #e5e5e5;
	padding: 10px 26px;
	border-radius: 6px;
	background-color: #fff;
	display: flex;
	align-items: center;
	min-height: 83px;
}
.box-number-info .text-number {
	display: inline-block;
	padding-right: 15px;
}
.box-number-info .text-number-info {
	width: 100%;
	display: inline-block;
}
.block-padding-100 {
	padding-left: 100px;
	padding-right: 100px;
}
.block-padding-100 .block-padding-inner {
	border-radius: 12px;
	padding: 120px 0;
}
.bg-testimonial {
	background-image: url(../imgs/page/homepage2/quote.png);
	background-repeat: no-repeat;
	background-position: right 175px top 49px;
	background-size: auto;
}
.swiper-group-testimonials-2 .swiper-slide {
	padding: 40px;
	width: 100% !important;
}
.bg-testimonial .box-region-right {
	padding-left: 30px;
}
.box-pagination-button-testimonials-2 {
	position: relative;
	padding-left: 40px;
	display: flex;
	position: relative;
	align-items: center;
	padding-top: 20px;
}
.box-pagination-button-testimonials-2 .swiper-button-next-testimonials-2,
.box-pagination-button-testimonials-2 .swiper-button-prev-testimonials-2 {
	position: relative;
	top: auto;
	bottom: auto;
	right: auto;
	display: inline-block;
	left: auto;
	height: 40px;
	width: 40px;
}
.box-pagination-button-testimonials-2 .swiper-pagination-testimonials-2 {
	display: inline-block;
	padding-left: 20px;
	width: auto;
	position: relative;
	top: auto;
	margin: 0;
}
.box-pagination-button-testimonials-2 .swiper-button-prev-testimonials-2 {
	background-image: url(../imgs/page/homepage2/prev-white.png);
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 10px;
}
.box-pagination-button-testimonials-2 .swiper-button-next-testimonials-2 {
	background-image: url(../imgs/page/homepage2/next-white.png);
	background-repeat: no-repeat;
	background-position: center;
}
.latest-new-white .color-white,
.latest-new-white .tags a {
	color: #181a1f !important;
}
.latest-new-white .btn.btn-arrow-up {
	border-color: #181a1f;
}
.latest-new-white .btn.btn-arrow-up svg {
	color: #181a1f;
}
.latest-new-white .datePost .color-white {
	color: #fff !important;
}
.box-banner-homepage-2 {
	position: relative;
}
.box-search-ride-style-2 {
	display: inline-block;
	background-color: transparent;
	bottom: 0;
	width: 100%;
}
.box-search-ride-style-2 .box-search-tabs {
	max-width: 470px;
	width: 100%;
	border-radius: 6px;
	bottom: -60px;
	right: 0;
	background-color: #fff;
	position: absolute;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.box-search-ride-style-2 .box-form-search {
	display: flex;
	flex-wrap: wrap;
	padding: 30px;
}
.box-search-ride-style-2 .box-form-search .btn-search {
	background-color: #e95440;
	border-radius: 6px;
	width: 100%;
}
.box-search-ride-style-2 .box-form-search .btn-search:hover {
	background-color: #000;
}
.box-search-ride-style-2 .search-item {
	background: #f6f6f6;
	padding: 10px;
	border-radius: 6px;
	margin-bottom: 20px;
	width: 100%;
}
.box-search-ride-style-2 .search-item.search-button,
.box-search-ride-style-2 .search-item.search-date,
.box-search-ride-style-2 .search-item.search-time {
	min-width: 100%;
	max-width: 100%;
}
.box-search-ride-style-2 .search-item.search-button {
	padding: 0;
}
.box-search-ride-style-2 .search-item .search-icon .item-icon {
	background-color: #fff;
	border-radius: 6px;
	width: 44px;
	height: 44px;
}
.box-search-ride-style-2 .search-item .search-inputs .search-input {
	line-height: 18px;
}
.box-search-ride-style-2 .search-item .search-inputs .text-14 {
	line-height: 16px;
}
.nav-tabs-search {
	border-bottom: 1px solid #e5e5e5;
}
.nav-tabs-search li {
	padding: 0 30px;
	position: relative;
}
.nav-tabs-search li a {
	position: relative;
	display: block;
	padding: 26px 0;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #626262;
}
.nav-tabs-search li a.active,
.nav-tabs-search li a:hover {
	color: #181a1f;
}
.nav-tabs-search li a.active::before,
.nav-tabs-search li a:hover::before {
	content: "";
	height: 2px;
	width: 100%;
	background-color: #181a1f;
	bottom: 0;
	left: 0;
	position: absolute;
}
.box-fleet-padding.bg-testimonial {
	padding-bottom: 40px;
}
.box-fleet-padding.bg-download-2 {
	background-image: url(../imgs/page/homepage2/bg-line.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.box-banner-homepage-3 {
	position: relative;
}
.box-banner-homepage-3 .box-banner-info {
	top: 50%;
	transform: translateY(-50%);
	max-width: 1410px;
}
.box-banner-homepage-3 .box-cover-image {
	background-image: url(../imgs/page/homepage3/bg-banner.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.box-banner-homepage-3 .box-image-banner {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	max-width: 48%;
	overflow: hidden;
	z-index: 3;
	padding-top: 30px;
}
.box-banner-homepage-3 .box-image-banner .img-1 {
	position: relative;
	top: 20px;
	display: inline-block;
	margin-right: 15px;
	border-radius: 6px;
}
.box-banner-homepage-3 .box-image-banner .img-2 {
	position: relative;
	top: -20px;
	display: inline-block;
	margin-right: 15px;
	border-radius: 6px;
}
.box-banner-homepage-3 .box-image-banner .img-3 {
	position: relative;
	top: 20px;
	display: inline-block;
	border-radius: 6px;
}
.cardIconTitleDescLeft .cardIconTitleDesc {
	text-align: left;
	padding: 40px 40px 10px 40px;
}
.cardIconTitleDescLeft .cardIconTitleDesc:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border-radius: 18px;
}
.list-how-2 {
	padding-top: 70px;
}
.list-how-2 li {
	position: relative;
	display: inline-block;
	padding-left: 70px;
	padding-bottom: 30px;
	cursor: pointer;
}
.list-how-2 li .number-circle {
	border-radius: 50%;
	background-color: #000;
	color: #fff;
	width: 50px;
	height: 50px;
	display: inline-block;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	position: absolute;
	top: 0;
	left: 0;
}
.list-how-2 li .line-dashed {
	height: auto;
	width: 2px;
	background: url(../imgs/page/homepage3/dashed.png) repeat-y top center;
	position: absolute;
	top: 70px;
	left: 25px;
	bottom: 15px;
}
.list-how-2 li.active .number-circle,
.list-how-2 li.slick-current .number-circle,
.list-how-2 li:hover .number-circle {
	background-color: #e95440;
}
.list-how-2 li:last-child {
	margin-bottom: 0;
}
.list-how-2 li:last-child .line-dashed {
	display: none;
}
.box-image-how {
	padding-left: 110px;
	position: relative;
	padding-top: 10px;
}
.box-image-how img {
	border-radius: 6px;
}
.bg-our-service-2 {
	background-color: #000;
	background-image: url(../imgs/page/homepage3/bg-line.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.box-btn-play {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 110px;
	right: 0;
	height: 46px;
	text-align: center;
	justify-content: center;
	display: flex;
}
.box-btn-play .btn-white {
	border-radius: 6px;
	display: flex;
	padding: 11px 21px;
	align-items: center;
	justify-content: center;
}
.box-btn-play .btn-white:hover {
	background-color: #e95440;
}
.list-ticks li {
	font-size: 18px;
	line-height: 50px;
	font-weight: 500;
	padding: 0 0 0 40px;
	position: relative;
}
.list-ticks li::before {
	content: "";
	height: 25px;
	width: 25px;
	background-color: var(--premium-gold);
	border-radius: 50%;
	background-image: url(../imgs/page/homepage2/tick.svg);
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.box-image-top {
	display: block;
}
.box-image-top img {
	border-radius: 6px;
}
.box-image-bottom {
	display: inline-block;
	width: 100%;
	margin-top: 20px;
}
.box-image-bottom img {
	vertical-align: top;
	margin-left: 30px;
	border-radius: 6px;
	margin-bottom: 30px;
}
.box-image-bottom img:first-child {
	margin-left: 0;
}
.rates {
	margin-top: 10px;
}
.rates img {
	display: inline-block;
	margin-right: 7px;
}
.box-customers-say {
	padding-right: 100px;
}
.cardTestimonialsStyle2 .box-quote {
	margin-bottom: 30px;
}
.cardTestimonialsStyle2 .content-quote {
	font-size: 18px;
	line-height: 35px;
	font-weight: 500;
}
.box-pagination-testimonials-2 .firstNumber,
.box-pagination-testimonials-2 .lastNumber {
	color: #181a1f;
}
.box-pagination-testimonials-2.box-pagination-testimonials
	.swiper-pagination.swiper-pagination-testimonials
	.swiper-pagination-bullet {
	background-color: #000;
}
.fleet-style-3 .cardFleet .cardInfoBottom .luggage .icon-circle,
.fleet-style-3 .cardFleet .cardInfoBottom .passenger .icon-circle {
	background-color: #f6f6f6;
}
.box-search-ride-style-3 {
	position: relative;
	bottom: auto;
	right: auto;
	max-width: 470px;
	margin: 0;
	border-radius: 0;
	background: no-repeat;
}
.box-search-ride-style-3 .box-form-search {
	display: inline-block;
	width: 100%;
}
.box-search-ride-style-3 .search-item {
	background-color: #fff;
	border-radius: 6px;
	margin-bottom: 10px;
	padding: 10px;
}
.box-search-ride-style-3 .search-item .search-icon .item-icon {
	background-color: #fff;
}
.box-search-ride-style-3 .search-button {
	padding: 0;
	min-width: 100%;
	max-width: 100%;
	margin-top: 20px;
}
.box-search-ride-style-3 .search-button .btn-search {
	width: 100%;
	padding: 19px;
	border-radius: 6px;
	background-color: #000;
}
.box-header-home4 {
	padding: 0 60px;
}
.banner-home-4 {
	background-image: url(../imgs/page/homepage4/banner.svg);
	background-position: bottom right;
	background-repeat: no-repeat;
}
.gallery-home-4 .box-image-1 {
	text-align: right;
	padding-right: 20px;
	max-width: 240px;
}
.gallery-home-4 .box-image-bottom img {
	margin-bottom: 20px;
	margin-left: 0;
}
.list-ticks-style-2 li::before {
	background-image: url(../imgs/page/homepage2/tick.svg);
}
.box-list-how-2 ul li.has-arrow {
	background-position: right 60px top 59%;
}
.bg-our-fleet-3 {
	background-color: #000;
	background-image: url(../imgs/page/homepage4/pattern.png);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: auto;
}
.box-button-download-white .btn.btn-download {
	background-color: #fff;
}
.box-button-download-white
	.btn.btn-download
	.inner-download
	.icon-download::before {
	background-color: #e5e5e5;
}
.box-button-download-white
	.btn.btn-download
	.inner-download
	.info-download
	span {
	color: #181a1f;
}
.box-padding-fleet {
	padding-top: 30px;
}
.link-grey {
	margin-top: 30px;
}
.link-grey li a {
	color: #181a1f;
	opacity: 0.2;
	font-weight: 500;
	font-size: 32px;
	line-height: 58px;
}
.link-grey li a:hover {
	opacity: 1;
}
.bg-our-fleet-2 {
	background-image: url(../imgs/page/homepage5/map.png);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
}
.bg-our-fleet-2 .cardCities .cardInfo .cardDesc,
.bg-our-fleet-2 .cardCities .cardInfo .cardTitle {
	color: #fff !important;
}
.bg-our-fleet-2 .cardCities .cardInfo .cardTitle:hover {
	color: #e95440 !important;
}
.footer-5 {
	background-image: none;
	padding-top: 90px;
}
.footer-5 .box-footer-top {
	margin-bottom: 36px;
}
.box-fleet-style-2 .box-swiper {
	width: calc(100% + 60px);
	margin-left: -30px;
}
.box-fleet-style-2 .box-swiper .swiper-container {
	padding-left: 30px;
	padding-right: 30px;
}
.latest-new-background .cardNews {
	overflow: hidden;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.latest-new-background .cardNews .cardImage img {
	border-radius: 0;
}
.latest-new-background .cardInfo {
	padding: 0 30px;
}
.latest-new-background .cardInfo .cardLink {
	display: none;
}
.box-testimonials-home5 {
	background-image: url(../imgs/page/homepage5/quote.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.box-testimonials-home5 .cardTestimonialsStyle2 .content-quote {
	font-size: 32px;
	line-height: 55px;
	font-weight: 500;
	margin-bottom: 30px;
}
.box-testimonials-home5 .cardTestimonialsStyle2 .box-quote .box-author {
	justify-content: center;
	width: 100%;
}
.box-testimonials-770 {
	max-width: 770px;
	margin: auto;
	text-align: center;
}
.box-services-banner {
	position: absolute;
	bottom: 30px;
	z-index: 533;
	left: 0;
	right: 0;
}
.swiper-button-next-banner-2,
.swiper-button-prev-banner-2 {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1px solid #fff;
	line-height: 62px;
	text-align: center;
	display: inline-block;
	background-image: none;
	position: relative;
	left: auto;
	bottom: auto;
	right: auto;
	margin-top: 20px;
}
.swiper-button-next-banner-2 svg,
.swiper-button-prev-banner-2 svg {
	height: 20px;
	color: #fff;
}
.swiper-button-next-banner-2:hover,
.swiper-button-prev-banner-2:hover {
	border-color: #fff;
	background-color: #fff;
}
.swiper-button-next-banner-2:hover svg,
.swiper-button-prev-banner-2:hover svg {
	color: #181a1f;
}
.box-pagination-button-2 {
	position: absolute;
	right: 0;
	top: 25px;
	max-width: 85px;
	margin: 0;
	left: auto;
	display: inline-block;
}
.banner-home5 {
	position: relative;
}
.banner-home5 .swiper-banner-1 .swiper-slide {
	padding-right: 100px;
}
.banner-home5 .box-banner-info {
	top: 30%;
}
.banner-home5 .box-cover-image::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../imgs/page/homepage5/bg-banner.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	background-color: transparent;
	opacity: 1;
}
.banner-home5 .btn-border {
	border-radius: 16px;
}
.banner-home5 .box-banner-homepage-2 {
	z-index: 2;
}
.banner-home5 .box-banner-homepage-2 .box-cover-image {
	height: 1060px;
}
.header-homepage5.stick .header-top-main {
	display: none;
}
.accordion-style-2 .accordion-button:not(.collapsed)::after {
	background-image: none;
}
.accordion-style-2 .accordion-collapse {
	background: 0 0;
}
.accordion-style-2 .accordion-button::after {
	background-image: none;
}
.accordion-style-2 .accordion-button {
	opacity: 1;
	padding-top: 15px;
	padding-bottom: 10px;
	background: 0 0;
}
.accordion-style-2 .accordion-button.collapsed {
	opacity: 0.2;
}
.accordion-style-2.accordion .accordion-item {
	border-bottom: 0;
}
.accordion-style-2.accordion .accordion-body {
	padding-bottom: 10px;
}
.latest-new-white {
	padding-top: 120px;
	padding-bottom: 90px;
}
.banner-homepage6 {
	position: relative;
}
.banner-homepage6 .container-fluid {
	padding: 0;
}
.banner-homepage6 .container-fluid .row {
	margin: 0;
}
.banner-homepage6 .container-fluid .row [class*="col-lg-"] {
	padding: 0;
}
.banner-homepage6 .list-logos li {
	display: inline-block;
	padding-right: 50px;
	width: auto;
	text-align: left;
}
.box-search-ride-3 {
	position: relative;
	bottom: auto;
	left: auto;
	right: auto;
	width: 100%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.box-search-ride-3 .search-item .search-icon .item-icon {
	background-color: #fdeeec;
}
.box-search-ride-3 .btn.btn-search {
	background-color: #e95440;
}
.box-search-ride-3 .btn.btn-search:hover {
	background-color: #000;
}
.box-banner-homepage6-left {
	padding-left: 200px;
	padding-top: 150px;
	max-width: 955px;
}
.box-banner-homepage6-right {
	height: 100%;
	background-color: #f0f2f6;
	text-align: center;
	display: flex;
	width: 100%;
	align-items: flex-end;
	padding: 72px 105px 0 105px;
}
.box-how-it-work .col-lg-4:last-child .cardNumberTitleDesc::before {
	display: none;
}
.block-padding-60 {
	padding-left: 0;
	padding-right: 0;
	position: relative;
}
.block-padding-60::before {
	content: "";
	position: absolute;
	top: 0;
	left: 60px;
	height: 100%;
	right: 0;
	background-color: #fdeeec;
	z-index: 1;
}
.block-padding-60 .container-sub {
	position: relative;
	z-index: 2;
}
.block-news-padding-60 {
	padding-left: 0;
	padding-right: 0;
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
}
.block-news-padding-60::before {
	content: "";
	position: absolute;
	top: 0;
	left: 60px;
	height: 100%;
	right: 0;
	background-color: #f0fbf7;
	z-index: 1;
}
.block-news-padding-60 .container-sub {
	position: relative;
	z-index: 2;
}
.box-latest-news-full,
.box-our-services-full {
	padding: 120px 0;
}
.box-reliability {
	position: relative;
	margin-top: 50px;
}
.box-reliability .container-sub {
	position: relative;
	padding-top: 65px;
	padding-bottom: 35px;
}
.box-reliability .container-sub .row {
	z-index: 2;
	position: relative;
}
.box-reliability .container-sub::before {
	content: "";
	position: absolute;
	width: 80%;
	z-index: 1;
	height: 100%;
	background-color: #f6f6f6;
	top: 0;
	left: 10px;
}
.box-reliability-inner {
	padding-left: 80px;
}
.box-customers-images .image-customer {
	position: relative;
	margin-right: 20px;
	display: inline-block;
	width: 90px;
	opacity: 0.5;
}
.box-customers-images .image-customer.active {
	opacity: 1;
}
.box-customers-images .image-customer img {
	height: 90px;
	width: 90px;
	border-radius: 50%;
	display: block;
}
.box-customers-images .image-customer .customer-quote {
	position: absolute;
	bottom: -5px;
	right: -5px;
	height: 40px;
	width: 40px;
}
.box-customers-images .image-customer .customer-quote img {
	height: auto;
	width: auto;
}
.swiper-button-next-small,
.swiper-button-prev-small {
	height: 40px;
	width: 40px;
	line-height: 40px;
	position: relative;
	margin-right: 10px;
}
.swiper-button-next-small svg,
.swiper-button-prev-small svg {
	position: absolute;
	top: 13px;
	left: 0;
	right: 0;
	margin: auto;
	height: 13px;
}
.swiper-pagination-testimonials-fraction {
	position: absolute;
	top: 0;
	left: 115px;
	text-align: left;
	padding-left: 0;
	line-height: 40px;
}
.box-banner-homepage7-left {
	padding: 0;
	max-width: 470px;
	margin: 0;
}
.box-banner-homepage7-right img {
	display: block;
}
.banner-homepage7 {
	background: url(../imgs/page/homepage7/map.png) no-repeat left center;
	background-size: auto 100%;
}
.box-number-banner {
	background-color: #000;
	padding: 55px 55px 55px 85px;
	text-align: center;
	color: #fff;
}
.box-number-banner .number-1 {
	display: inline-block;
	padding-left: 83px;
}
.box-some-number {
	padding: 68px 60px;
	background-color: rgba(0, 0, 0, 0.9098039216);
}
.bg-enjoy .container-fluid {
	padding: 0;
}
.bg-enjoy .container-fluid .row {
	margin: 0;
}
.bg-enjoy .container-fluid .row .col-lg-5 {
	padding: 0;
}
.bg-our-service-home-7 {
	position: relative;
	padding: 105px 0 0 0;
	margin-top: 100px;
}
.bg-our-service-home-7 .box-pagination-fleet {
	margin-top: 0;
}
.bg-our-service-home-7::before {
	content: "";
	height: 435px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
}
.bg-our-service-home-7 .container-sub {
	position: relative;
	z-index: 2;
}
.bg-our-service-home-7 .box-pagination-fleet {
	position: unset;
}
.bg-our-service-home-7 .box-pagination-fleet .swiper-button-next-fleet,
.bg-our-service-home-7 .box-pagination-fleet .swiper-button-prev-fleet {
	position: absolute;
	top: 50%;
	left: -102px;
	z-index: 1234;
	background-color: #fff;
	margin-top: -48px;
	border-color: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.bg-our-service-home-7 .box-pagination-fleet .swiper-button-next-fleet {
	right: -102px;
	left: auto;
}
.bg-download-black {
	background-color: #000;
}
.bg-download-black .btn.btn-download {
	background-color: rgba(255, 255, 255, 0.1843137255);
}
.box-make-your-trip {
	padding: 120px 0;
	position: relative;
}
.box-make-your-trip .bg-right-trip {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 45%;
	z-index: 1;
	height: 100%;
	width: 100%;
	background-image: url(../imgs/page/homepage7/bg-your-trip.png);
	background-position: top right;
	background-size: cover;
	background-repeat: no-repeat;
}
.list-features-trip li {
	display: flex;
	margin-bottom: 24px;
}
.list-features-trip li .feature-left {
	min-width: 56px;
	max-width: 56px;
	width: 100%;
	margin-right: 40px;
}
.list-features-trip li .feature-right {
	width: 100%;
}
.box-testimonials-homepage7 .box-customers-images {
	padding-top: 10px;
}
.box-testimonials-home8 {
	padding: 120px 0 90px 0;
}
.box-testimonials-home8 .box-customers-images {
	max-width: 370px;
}
.box-testimonials-home8 .box-customers-images img {
	border-radius: 6px;
	display: block;
}
.box-showcase-home8 {
	position: relative;
}
.box-slider-customers {
	padding: 50px 0 50px 0;
	position: relative;
	max-height: 945px;
	overflow: hidden;
}
.box-slider-customers .box-swiper {
	max-width: 100%;
}
.swiper-pagination.swiper-pagination-number .swiper-pagination-bullet {
	height: 40px;
	width: 40px;
	display: inline-block;
	margin: 5px 0 5px 0;
	border: 1px solid #181a1f;
	border-radius: 50%;
	background-color: #fff;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
}
.swiper-pagination.swiper-pagination-number .swiper-pagination-bullet-active {
	background-color: #f6f6f6;
}
.swiper-pagination-number {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 60px;
	width: 40px;
	bottom: auto !important;
}
.box-our-fleet-home8 {
	padding: 120px 0 120px 0;
}
.box-our-fleet-home8 .fleet-style-3 .cardFleet {
	border: 1px solid #fff;
}
.box-our-fleet-home8 .fleet-style-3 .cardFleet:hover {
	border-color: #e5e5e5;
}
.box-our-fleet-home8 .fleet-style-3 .box-pagination-fleet {
	margin-top: 0;
	position: unset;
}
.box-our-fleet-home8
	.fleet-style-3
	.box-pagination-fleet
	.swiper-button-prev-fleet {
	position: absolute;
	top: 50%;
	left: -102px;
	transform: translateY(-50%);
}
.box-our-fleet-home8
	.fleet-style-3
	.box-pagination-fleet
	.swiper-button-next-fleet {
	position: absolute;
	top: 50%;
	right: -102px;
	transform: translateY(-50%);
}
.box-makeyourtrip-home8 {
	background-color: #fdeeec;
	padding: 120px 0;
}
.box-makeyourtrip-home8 .cardIconTitleDescLeft .cardIconTitleDesc {
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.box-how-it-works-home8 {
	background-image: url(../imgs/page/homepage8/map.png);
	background-position: left bottom;
	background-repeat: no-repeat;
	padding: 120px 0;
}
.box-how-it-works-home8 .list-how li:last-child {
	padding-bottom: 0;
}
.banner-home8 {
	position: relative;
}
.box-search-ride-style-4 {
	position: relative;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
}
.box-search-ride-style-4 .box-search-tabs {
	position: relative;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
}
.box-banner-homepage-8 .box-cover-image {
	padding: 109px 0;
}
.box-banner-homepage-8 .box-cover-image .container-sub {
	position: relative;
	z-index: 2;
}
.box-banner-homepage-8 .box-search-ride-style-4 .box-form-search .btn-search {
	background-color: #000;
	color: #fff;
}
.box-banner-homepage-8
	.box-search-ride-style-4
	.box-form-search
	.btn-search:hover {
	background-color: #e95440;
	color: #fff;
}
.footer-8 {
	background-color: #fff;
	padding-top: 0;
}
.footer-8 .footer-box-inner {
	background-color: #fff;
	padding-top: 0;
}
.footer-8 .footer-box-inner .address-footer {
	background-image: url(../imgs/page/homepage8/address.svg);
}
.footer-8 .footer-box-inner .time-footer {
	background-image: url(../imgs/page/homepage8/time.svg);
}
.footer-8 .footer-box-inner .call-footer {
	background-image: url(../imgs/page/homepage8/call.svg);
}
.footer-8 .footer-bottom {
	border-top: 1px solid #e5e5e5;
}
.footer-8 .menu-footer li a {
	color: #181a1f;
}
.footer-8 .menu-footer li a:hover {
	color: #06d6a0;
}
.footer-8 .menu-bottom li a {
	color: #181a1f;
}
.footer-8 .menu-bottom li a:hover {
	color: #06d6a0;
}
.footer-8 .btn.btn-link-location {
	background-image: url(../imgs/page/homepage8/address.png);
}
.footer-8 .btn.btn-link-globe {
	background-image: url(../imgs/page/homepage8/globe.png);
}
.footer-8 .btn.btn-link-globe,
.footer-8 .btn.btn-link-location {
	color: #181a1f;
}
.footer-8 .btn.btn-link-globe:hover,
.footer-8 .btn.btn-link-location:hover {
	background-color: #fdeeec;
}
.color-text-2 {
	color: rgba(24, 26, 31, 0.5137254902);
}
.box-info-slide-custmer {
	padding-left: 120px;
	max-width: 590px;
}
.box-swiper .swiper-group-1-number .swiper-slide {
	max-height: 945px;
}
.box-swiper .swiper-group-1-number .swiper-container {
	height: auto;
}
.box-intercity-home8 {
	padding: 120px 0 0 0;
}
.box-testimonials-home8 .box-pagination-fleet {
	margin-top: 30px;
}
.box-comfortable-home9 {
	padding: 0 60px;
	position: relative;
}
.box-comfortable-home9-inner {
	border-radius: 6px;
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
}
.bg-our-service-home-9 {
	padding-top: 120px;
	padding-bottom: 120px;
}
.latest-new-home9 {
	padding: 0 60px;
}
.latest-new-home9 .color-text {
	color: #fff !important;
}
.banner-home9 {
	padding-left: 60px;
	padding-right: 60px;
}
.banner-home9 .box-pagination-button {
	top: auto;
	bottom: 30px;
}
.box-search-ride-5 {
	max-width: 1366px;
	background-color: #000;
	border-radius: 0 0 6px 6px;
	top: 0;
	bottom: auto;
}
.box-search-ride-5 .search-item .search-inputs .search-input {
	color: #fff;
}
.box-search-ride-5 .color-grey {
	color: #e5e5e5;
}
.box-search-ride-5 .search-item .search-icon .item-icon {
	background-color: rgba(255, 255, 255, 0.2039215686);
}
.box-search-ride-5 .search-item .search-icon .item-icon.icon-date {
	background-image: url(../imgs/page/homepage9/planning.svg);
}
.box-search-ride-5 .search-item .search-icon .item-icon.icon-time {
	background-image: url(../imgs/page/homepage9/clock.svg);
}
.box-search-ride-5 .search-item .search-icon .item-icon.icon-from {
	background-image: url(../imgs/page/homepage9/from.svg);
}
.box-search-ride-5 .search-item .search-icon .item-icon.icon-to {
	background-image: url(../imgs/page/homepage9/to.svg);
}
.box-search-ride-5 .btn-search {
	border-radius: 6px;
	background-color: #e95440;
}
.box-search-ride-5 .btn-search:hover {
	background-color: #181a1f;
}
.swiper-pagination-banner-2 .swiper-pagination-bullet {
	height: 4px;
	width: 12px;
	background-color: #fff;
	border-radius: 6px;
	margin: 0 5px;
}
.swiper-pagination-banner-2 .swiper-pagination-bullet-active {
	width: 24px;
}
.box-pdrl-60,
.footer-7 {
	padding: 0 60px;
	position: relative;
}
.footer.footer-7 {
	background-color: #fff;
	padding-top: 0;
}
.footer.footer-7 .menu-footer li {
	margin-bottom: 5px;
}
.footer-box-inner {
	background-color: #000;
	padding-top: 60px;
}
.bg-download-home9 {
	background-image: none;
}
.color-white-2 {
	color: rgba(255, 255, 255, 0.6);
}
.address-footer {
	display: block;
	padding: 5px 0 5px 30px;
	background: url(../imgs/page/homepage9/address.svg) no-repeat left top 5px;
}
.time-footer {
	display: block;
	padding: 5px 0 5px 30px;
	background: url(../imgs/page/homepage9/time.svg) no-repeat left top 5px;
}
.call-footer {
	display: block;
	padding: 5px 0 5px 30px;
	background: url(../imgs/page/homepage9/call-footer.svg) no-repeat left top 5px;
}
.box-number-servered {
	position: absolute;
	bottom: -70px;
	right: -80px;
}
.box-number-servered .box-number-info {
	border: 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.cardIconTitleDescLeftStyle2 .cardIconTitleDesc {
	text-align: left;
}
.banner-home10 .box-cover-image::before {
	opacity: 0.5;
}
.banner-home10 .box-banner-info {
	transform: translateY(-50%);
	top: 50%;
}
.btn-play-big {
	display: inline-block;
	height: 90px;
	width: 90px;
	background: url(../imgs/page/homepage10/play.svg) no-repeat center;
	background-size: contain;
}
.box-search-ride-style-6 {
	background-color: transparent;
	border-radius: 0;
	bottom: -70px;
	max-width: 1150px;
}
.box-search-ride-style-6 .tab-content {
	background-color: #fff;
	border-radius: 0 6px 6px 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}
.box-search-ride-style-6 .tab-content .box-form-search {
	display: flex;
	margin-bottom: 0;
	margin-left: -10px;
	margin-right: -10px;
}
.box-search-ride-style-6 .search-item {
	margin-right: 15px;
	border: 1px solid #e5e5e5;
	padding-left: 0;
	border-radius: 6px;
}
.box-search-ride-style-6 .search-item:last-child {
	margin-right: 0;
}
.box-search-ride-style-6 .search-item .search-icon {
	margin-right: 5px;
}
.box-search-ride-style-6 .search-item .search-icon .item-icon {
	background-color: transparent;
}
.box-search-ride-style-6 .search-item.search-button {
	padding: 0;
	min-width: 150px;
	max-width: 150px;
	border: 0;
}
.box-search-ride-style-6 .box-search-tabs {
	width: 100%;
}
.box-search-ride-style-6 .btn-search {
	border-radius: 6px;
	width: 100%;
	background-color: #e95440;
}
.box-search-ride-style-6 .nav-tabs-search {
	border-bottom: 0;
}
.box-search-ride-style-6 .nav-tabs-search li {
	padding: 0;
	float: left;
}
.box-search-ride-style-6 .nav-tabs-search li a {
	padding: 16px 30px;
	background-color: #fdeeec;
}
.box-search-ride-style-6 .nav-tabs-search li a.active,
.box-search-ride-style-6 .nav-tabs-search li a:hover {
	background-color: #fff;
}
.box-search-ride-style-6 .nav-tabs-search li a.active::before,
.box-search-ride-style-6 .nav-tabs-search li a:hover::before {
	display: none;
}
.box-search-ride-style-6 .nav-tabs-search li:first-child a {
	border-radius: 6px 0 0 0;
}
.box-search-ride-style-6 .nav-tabs-search li:last-child a {
	border-radius: 0 6px 0 0;
}
.fleet-style-2 .cardFleet:hover {
	background-color: #fdeeec;
}
.fleet-style-2 .swiper-button-next-fleet:hover,
.fleet-style-2 .swiper-button-prev-fleet:hover {
	background-color: #fdeeec;
}
.bg-how-it-works-home10 {
	position: relative;
	background: url(../imgs/page/homepage10/map.png) no-repeat right bottom;
}
.bg-how-it-works-home10::before {
	display: none;
}
.bg-how-it-works-home10 .list-how li::before,
.bg-how-it-works-home10
	.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li::before {
	border-color: #181a1f;
}
.bg-how-it-works-home10 .list-how li:after,
.bg-how-it-works-home10
	.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li:after {
	background-color: #181a1f;
}
.bg-how-it-works-home10 .list-how li a,
.bg-how-it-works-home10
	.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li
	a {
	color: #181a1f;
}
.bg-how-it-works-home10 .list-how li .line-white,
.bg-how-it-works-home10
	.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li
	.line-white {
	background-color: #181a1f;
}
.bg-how-it-works-home10 .list-how li h4,
.bg-how-it-works-home10 .list-how li p,
.bg-how-it-works-home10
	.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li
	h4,
.bg-how-it-works-home10
	.list-how.slider-nav-thumbnails
	.slick-list
	.slick-track
	li
	p {
	color: #181a1f;
}
.box-showcase-home10 .bg-showcase {
	background-color: #000;
	background-image: url(../imgs/page/homepage10/line.png);
	background-position: top right;
	background-repeat: no-repeat;
	border-radius: 0;
	background-size: cover;
}
.box-reliability-home10 {
	background: url(../imgs/page/homepage10/img-reliability.png) no-repeat top
		center;
	background-size: cover;
	padding: 160px 0;
	text-align: right;
}
.box-info-reliability {
	background-color: #fff;
	padding: 50px;
	max-width: 370px;
	text-align: left;
	display: inline-block;
	border-radius: 6px;
}
.bg-our-service-home-10 {
	margin: 90px 0 120px 0;
}
.bg-our-service-home-10 .box-pagination-fleet {
	margin-top: 30px;
}
.swiper-services-auto .swiper-slide {
	max-width: 1170px;
}
.footer.footer-10 {
	background-image: none;
}
.footer.footer-10 .footer-2 {
	background-color: rgba(255, 255, 255, 0.0823529412);
}
.footer.footer-10 .footer-2 .footer-bottom {
	border-top: 0;
}
.bg-region-home10 {
	padding-top: 120px;
	padding-bottom: 120px;
}
.dropdown-menu-box {
	display: inline-block;
}
.dropdown-menu-box .dropdown-toggle::after {
	display: none;
}
.dropdown-menu-box .dropdown-toggle {
	padding: 10px 25px 10px 20px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	background: url(../imgs/template/icons/angle-down.svg) no-repeat right center;
}
.dropdown-menu-box .dropdown-menu {
	border: #e5e5e5 1px solid;
}
.dropdown-menu-box .dropdown-menu .dropdown-item {
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #181a1f;
}
.dropdown-menu-box .dropdown-menu .dropdown-item:hover {
	background-color: #f0fbf7;
}
.our-fleet-2 .cardFleet .cardInfoBottom .passenger {
	position: relative;
	min-width: 170px;
	max-width: 170px;
}
.our-fleet-2 .cardFleet .cardInfoBottom .luggage {
	justify-content: flex-start;
}
.our-fleet-2 .cardFleetStyle3 .cardInfoBottom .passenger {
	min-width: 70px;
	max-width: 70px;
}
.fleet-style-5 .cardFleet:hover {
	border-color: #000;
	background-color: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.fleet-style-3 .cardFleet {
	border: 0;
}
.fleet-style-3 .cardFleet:hover {
	background-color: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.passengers-info {
	display: inline-block;
	padding: 0 0 0 22px;
	background-image: url(../imgs/template/icons/friend.svg);
	background-position: left center;
	background-repeat: no-repeat;
}
.luggages-info {
	display: inline-block;
	padding: 0 0 0 22px;
	background-image: url(../imgs/template/icons/luggage.svg);
	background-position: left center;
	background-repeat: no-repeat;
}
.box-vehicle-price {
	background-color: #f0fbf7;
	border-radius: 6px;
	padding: 15px 30px;
}
.list-prices {
	padding: 0;
	margin: 0;
	display: block;
	list-style: none;
}
.list-prices li {
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	padding: 15px 0;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #181a1f;
}
.list-prices li span.text {
	width: 100%;
}
.list-prices li span.price {
	min-width: 42px;
	max-width: 42px;
	width: 100%;
}
.list-prices li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.mw-100 {
	max-width: 100% !important;
}
.text-conditions {
	font-size: 14px;
	line-height: 18px;
	color: #181a1f;
	font-weight: 400;
	padding: 0 0 0 20px;
	display: inline-block;
}
.text-conditions.icon-meet {
	background-image: url(../imgs/page/fleet/meet.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.text-conditions.icon-free-cancel {
	background-image: url(../imgs/page/fleet/free-cancel.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.text-conditions.icon-free-wait {
	background-image: url(../imgs/page/fleet/free-wait.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.text-conditions.icon-safe {
	background-image: url(../imgs/page/fleet/safe.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.banner-image-service {
	position: relative;
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 500px;
	height: 500px;
}
.box-form-service-single {
	position: relative;
}
.box-form-service-single .box-search-ride-style-2 .box-search-tabs {
	bottom: 80px;
	position: absolute;
	max-width: 370px;
	right: 10px;
}
.box-info-left {
	padding-right: 50px;
}
.box-info-right {
	padding-left: 50px;
}
.icon-quote.bg-secondary {
	background-image: url(../imgs/page/about/quote.png);
}
.box-pagination-testimonials.swiper-pagination-grey
	.swiper-pagination
	.swiper-pagination-bullet {
	background-color: #181a1f;
}
.box-pagination-testimonials.swiper-pagination-grey
	.swiper-pagination
	.swiper-pagination-bullet-active {
	background-color: #000;
}
.box-pagination-testimonials.swiper-pagination-grey .firstNumber,
.box-pagination-testimonials.swiper-pagination-grey .lastNumber {
	color: #181a1f;
}
.list-the-trip li {
	display: flex;
	width: 100%;
	margin-bottom: 30px;
}
.list-the-trip li .cardImage {
	min-width: 80px;
	max-width: 80px;
	width: 100%;
	margin-right: 20px;
}
.list-the-trip li .cardInfo {
	width: 100%;
}
.box-the-trip {
	padding: 120px 0 90px 0;
	max-width: 540px;
}
.bg-your-trip {
	position: relative;
}
.box-the-trip-right {
	max-width: 45%;
	width: 100%;
	background: url(../imgs/page/about/bg-trip.png) no-repeat top right;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}
.banner-about {
	position: relative;
}
.padding-box {
	padding: 60px 0;
}
.box-banner-right {
	position: absolute;
	bottom: -50px;
	right: 0;
	overflow: hidden;
	max-width: 55%;
	top: 0;
	width: 100%;
	height: calc(100% + 50px);
	background: url(../imgs/page/about/banner2.png) no-repeat top center;
	background-size: cover;
}
.mw-770 {
	max-width: 770px;
	margin: auto;
}
.form-contact-2 .form-contact {
	max-width: 520px;
}
.box-offices {
	padding-left: 50px;
}
.box-offices .cardContact .cardImage img {
	max-height: 60px;
}
.box-offices .cardContact .mb-30 {
	margin-bottom: 20px !important;
}
.list-contact-infos {
	display: block;
	width: 100%;
}
.list-contact-infos li {
	display: flex;
	margin-bottom: 60px;
}
.list-contact-infos li .contact-icon {
	min-width: 62px;
	margin-right: 40px;
}
.list-contact-infos li .contact-info {
	width: 100%;
}
.box-banner-contact-2 {
	max-width: 50%;
	top: 70px;
	height: auto;
}
.map-contact {
	width: 100%;
	height: 700px;
}
.box-banner-contact-2 iframe {
	height: 100%;
	width: 100%;
}
.content-team-single {
	max-width: 670px;
}
.content-team-single .tab-content {
	padding: 30px 0;
}
.content-team-single .tab-content p {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 28px;
	color: #181a1f;
	font-weight: 400;
}
.list-tabs-team {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e5e5e5;
}
.list-tabs-team li a {
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	color: #626262;
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 2px solid #fff;
}
.list-tabs-team li a.active,
.list-tabs-team li a:hover {
	color: #181a1f;
	border-bottom: 2px solid #181a1f;
}
.list-experiences li {
	position: relative;
}
.list-experiences li .card-experiences .card-experience-circle {
	position: relative;
}
.list-experiences li .card-experiences .card-experience-circle::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	width: 1px;
	bottom: 10px;
	margin: auto;
	background: url(../imgs/page/team-single/dashed.png);
}
.list-experiences
	li:last-child
	.card-experiences
	.card-experience-circle::before {
	display: none;
}
.box-user-info {
	padding: 20px;
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	position: absolute;
	max-width: 370px;
	top: -240px;
	border-radius: 6px;
}
.box-user-info .image-user {
	margin-bottom: 20px;
}
.box-user-info .image-user img {
	border-radius: 6px;
	display: block;
}
.box-user-info .list-info-user li {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 10px;
}
.box-user-info .list-info-user li .label-left {
	min-width: 65px;
}
.box-user-info .list-info-user li .text-info-right {
	width: auto;
}
.box-user-info .list-info-user li:last-child {
	border-bottom: 0;
}
.box-user-info .icon-socials {
	height: 20px;
	width: 20px;
}
.box-user-info .icon-socials.icon-facebook {
	background: url(../imgs/template/icons/fb-black.svg) no-repeat center;
}
.box-user-info .icon-socials.icon-twitter {
	background: url(../imgs/template/icons/tw-black.svg) no-repeat center;
}
.box-user-info .icon-socials.icon-instagram {
	background: url(../imgs/template/icons/instagram-black.svg) no-repeat center;
}
.box-user-info .icon-socials.icon-linkedin {
	background: url(../imgs/template/icons/linkedin-black.svg) no-repeat center;
}
.box-user-info .box-button-send {
	margin-top: 10px;
}
.box-user-info .box-button-send .btn {
	width: 100%;
}
.text-billed {
	font-weight: 400;
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	line-height: 28px;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
}
.switch {
	position: relative;
	display: inline-block;
	width: 55px;
	height: 30px;
	vertical-align: middle;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f0f2f6;
	transition: 0.4s;
}
.slider.round {
	border-radius: 34px;
}
.slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	left: 3px;
	bottom: 3px;
	background-color: #fff;
	transition: 0.4s;
}
.slider.round:before {
	border-radius: 50%;
}
input:checked + .slider {
	background-color: #ffe7bb;
}
input:checked + .slider:before {
	transform: translateX(25px);
}
.box-bill-switch {
	align-items: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.list-ticks-plan {
	display: flex;
	flex-wrap: wrap;
}
.list-ticks-plan li {
	width: 100%;
	color: #181a1f;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 21px;
}
.list-ticks-plan li svg {
	color: #000;
	height: 20px;
	margin-right: 10px;
}
.for-month,
.for-year {
	display: none;
}
.display-month,
.display-year {
	display: block;
}
.box-login {
	max-width: 369px;
	margin: auto;
}
.cb-rememberme {
	float: left;
	margin: 5px 9px 0 0;
}
.text-or-box {
	position: relative;
	text-align: center;
	margin: 35px 0;
}
.text-or-box::before {
	content: "";
	height: 1px;
	width: 100%;
	background-color: #e5e5e5;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	bottom: 0;
	margin: auto;
}
.text-or-box .text-or {
	display: inline-block;
	padding: 5px 10px;
	background-color: #fff;
	color: #181a1f;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	position: relative;
	z-index: 2;
}
.box-comingsoon {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: url(../imgs/page/comingsoon/banner.png) no-repeat top center;
	background-size: cover;
}
.box-comingsoon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	background: url(../imgs/page/our-team/bg-trans.png) repeat top center;
}
.box-comingsoon .inner-comingsoon {
	max-width: 790px;
	margin: auto;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	z-index: 3;
	padding: 0 20px;
}
.box-subscriber {
	position: relative;
	max-width: 540px;
	margin: auto;
}
.box-subscriber .inner-box-subscriber {
	background-color: #fff;
	border-radius: 12px;
	position: relative;
}
.box-subscriber .btn-subscriber {
	background-color: #fff;
	padding: 0 18px;
	height: 100%;
	max-width: 123px;
	width: 100%;
	position: absolute;
	top: 0;
	right: -1px;
	z-index: 2;
	color: #181a1f;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	border-radius: 0 12px 12px 0;
}
.box-subscriber .btn-subscriber:hover {
	background-color: #181818;
	color: #fff;
}
.box-subscriber .form-control {
	color: #181a1f;
	font-size: 14px;
	line-height: 24px;
	height: 70px;
	width: 100%;
	border-radius: 12px;
}
.box-invoice-block {
	padding: 0 20px;
}
.box-invoice {
	background-color: #fff;
	box-shadow: 0 0 35px rgba(181, 181, 195, 0.15);
	border-radius: 6px;
	position: relative;
	max-width: 1170px;
	margin: auto;
	margin-top: 145px;
	margin-bottom: 100px;
}
.inner-invoice {
	padding: 130px 100px 0 100px;
}
.invoice-top {
	margin: 0 -10px;
}
.invoice-left {
	width: 100%;
	padding: 0 10px;
}
.invoice-right {
	width: 100%;
	padding: 0 10px;
	max-width: 350px;
}
.bottom-invoice {
	padding: 48px 0 44px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	border-top: 1px solid #e5e5e5;
	margin-top: 100px;
}
.bottom-invoice a {
	display: inline-block;
	padding: 0 30px;
}
.table-invoice thead th {
	background-color: #f0fbf7;
	padding: 21px 41px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}
.table-invoice tbody tr td {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: #181a1f;
	padding: 23px 41px;
	border-bottom: 1px solid #e5e5e5;
}
.table-invoice tbody tr:last-child td {
	border-bottom: 0;
}
.box-booking-tabs {
	display: flex;
	margin: 0 -15px;
}
.box-booking-tabs .item-tab {
	width: 25%;
	padding: 0 15px;
}
.box-booking-tabs .item-tab .box-tab-step {
	width: 100%;
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #e5e5e5;
	cursor: pointer;
}
.box-booking-tabs .item-tab .box-tab-step .icon-tab {
	display: flex;
	align-items: center;
}
.box-booking-tabs .item-tab .box-tab-step .icon-tab .icon-book {
	display: inline-block;
	height: 60px;
	width: 60px;
	margin-right: 20px;
	background-color: #f0fbf7;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
}
.box-booking-tabs .item-tab .box-tab-step .icon-tab .icon-book.icon-vehicle {
	background-image: url(../imgs/page/booking/vehicle.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs .item-tab .box-tab-step .icon-tab .icon-book.icon-extra {
	background-image: url(../imgs/page/booking/extra.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs .item-tab .box-tab-step .icon-tab .icon-book.icon-pax {
	background-image: url(../imgs/page/booking/pax.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs .item-tab .box-tab-step .icon-tab .icon-book.icon-payment {
	background-image: url(../imgs/page/booking/payment.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs .item-tab .box-tab-step .icon-tab .text-tab {
	font-size: 18px;
	line-height: 28px;
	color: #181a1f;
	font-weight: 500;
}
.box-booking-tabs .item-tab .box-tab-step.active,
.box-booking-tabs .item-tab .box-tab-step:hover {
	border-bottom-color: #181a1f;
}
.box-booking-tabs .item-tab .box-tab-step.active .icon-tab .icon-book,
.box-booking-tabs .item-tab .box-tab-step:hover .icon-tab .icon-book {
	background-color: #181a1f;
}
.box-booking-tabs
	.item-tab
	.box-tab-step.active
	.icon-tab
	.icon-book.icon-vehicle,
.box-booking-tabs
	.item-tab
	.box-tab-step:hover
	.icon-tab
	.icon-book.icon-vehicle {
	background-image: url(../imgs/page/booking/vehicle-hover.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs
	.item-tab
	.box-tab-step.active
	.icon-tab
	.icon-book.icon-extra,
.box-booking-tabs
	.item-tab
	.box-tab-step:hover
	.icon-tab
	.icon-book.icon-extra {
	background-image: url(../imgs/page/booking/extra-hover.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs .item-tab .box-tab-step.active .icon-tab .icon-book.icon-pax,
.box-booking-tabs .item-tab .box-tab-step:hover .icon-tab .icon-book.icon-pax {
	background-image: url(../imgs/page/booking/pax-hover.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs
	.item-tab
	.box-tab-step.active
	.icon-tab
	.icon-book.icon-payment,
.box-booking-tabs
	.item-tab
	.box-tab-step:hover
	.icon-tab
	.icon-book.icon-payment {
	background-image: url(../imgs/page/booking/payment-hover.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.box-booking-tabs .item-tab .box-tab-step .number-tab span {
	font-weight: 500;
	font-size: 30px;
	line-height: 58px;
	color: #181a1f;
}
.box-row-tab {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.box-row-tab .box-tab-left {
	padding: 0 10px;
	width: 71%;
}
.box-row-tab .box-tab-right {
	padding: 0 10px;
	width: 29%;
}
.sidebar {
	padding: 30px;
	border-radius: 6px;
	width: 100%;
	border: 1px solid #e5e5e5;
	margin-bottom: 30px;
}
.list-routes li {
	display: flex;
	width: 100%;
	align-items: center;
	position: relative;
	padding-bottom: 50px;
}
.list-routes li .location-item {
	width: 36px;
	height: 40px;
	background: url(../imgs/page/booking/location.svg) no-repeat center;
	margin-right: 25px;
	color: #fff;
	line-height: 35px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	display: inline-block;
}
.list-routes li .info-location {
	position: relative;
}
.list-routes li::before {
	content: "";
	position: absolute;
	top: 50px;
	left: 17px;
	height: 30px;
	width: 2px;
	background: url(../imgs/page/booking/dotted.png) no-repeat center;
}
.list-routes li:last-child {
	padding-bottom: 0;
}
.list-routes li:last-child::before {
	display: none;
}
.list-icons {
	padding: 20px 0 0 0;
}
.list-icons li {
	display: flex;
	width: 100%;
	align-items: center;
	position: relative;
	padding-bottom: 20px;
}
.list-icons li .icon-item {
	width: 40px;
	height: 40px;
	background-color: #e95440;
	margin-right: 25px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
}
.list-icons li .icon-item.icon-plan {
	background-image: url(../imgs/page/booking/plan.svg);
	background-repeat: no-repeat;
	background-position: center top 10px;
}
.list-icons li .icon-item.icon-time {
	background-image: url(../imgs/page/booking/time.svg);
	background-repeat: no-repeat;
	background-position: center;
}
.list-icons li .info-location {
	position: relative;
}
.list-icons li:last-child {
	padding-bottom: 0;
}
.box-map-route {
	width: 100%;
	height: 200px;
	margin-top: 30px;
	margin-bottom: 25px;
	border-radius: 6px;
	overflow: hidden;
}
.box-map-route iframe {
	width: 100%;
	height: 100%;
}
.box-info-route {
	display: flex;
	justify-content: space-between;
}
.box-info-route .info-route-left {
	position: relative;
}
.box-info-route .info-route-left span {
	display: block;
}
.box-info-route .info-route-right {
	padding-left: 20px;
}
.box-info-route .info-route-right span {
	display: block;
}
.list-ticks-small-booking li {
	padding-left: 35px;
}
.list-ticks-small-booking li::before {
	background-image: url(../imgs/page/homepage2/tick.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.list-ticks-small-booking li:last-child {
	margin-bottom: 0 !important;
}
.list-vehicles {
	position: relative;
}
.item-vehicle {
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.item-vehicle:hover {
	background-color: #f0fbf7;
}
.item-vehicle:hover .btn-primary {
	background-color: #e95440;
	color: #fff;
}
.item-vehicle:hover .btn-primary svg {
	color: #fff;
}
.item-vehicle .vehicle-left {
	padding: 0 10px;
	position: relative;
	width: 67%;
	border-right: 1px solid #e5e5e5;
	margin-right: 20px;
}
.item-vehicle .vehicle-left .vehicle-image {
	margin-bottom: 15px;
	width: 100%;
	text-align: center;
}
.item-vehicle .vehicle-left .vehicle-image img {
	display: block;
}
.item-vehicle .vehicle-left .vehicle-facilities {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -10px;
}
.item-vehicle .vehicle-left .vehicle-facilities .text-fact {
	font-size: 14px;
	line-height: 35px;
	color: #181a1f;
	display: inline-block;
	padding: 0 10px 0 25px;
	width: 50%;
}
.item-vehicle .vehicle-left .vehicle-facilities .text-fact.meet-greeting {
	background-image: url(../imgs/page/booking/meet.svg);
	background-position: left center;
	background-repeat: no-repeat;
}
.item-vehicle .vehicle-left .vehicle-facilities .text-fact.free-cancel {
	background-image: url(../imgs/page/booking/cancel.svg);
	background-position: left center;
	background-repeat: no-repeat;
}
.item-vehicle .vehicle-left .vehicle-facilities .text-fact.free-waiting {
	background-image: url(../imgs/page/booking/free-time.svg);
	background-position: left center;
	background-repeat: no-repeat;
}
.item-vehicle .vehicle-left .vehicle-facilities .text-fact.safe-travel {
	background-image: url(../imgs/page/booking/safe.html);
	background-position: left center;
	background-repeat: no-repeat;
}
.item-vehicle .vehicle-left .link {
	text-decoration: underline;
}
.item-vehicle .vehicle-left .link:hover {
	color: #e95440;
}
.item-vehicle .vehicle-right {
	width: 33%;
	padding: 0 10px;
	position: relative;
}
.item-vehicle .vehicle-right .vehicle-passenger-luggage {
	display: flex;
	justify-content: space-between;
}
.item-vehicle .vehicle-right .vehicle-passenger-luggage .passenger {
	display: inline-block;
	padding: 0 0 0 18px;
	background-image: url(../imgs/page/booking/passenger.svg);
	background-position: left center;
	background-repeat: no-repeat;
}
.item-vehicle .vehicle-right .vehicle-passenger-luggage .luggage {
	display: inline-block;
	padding: 0 0 0 18px;
	background-image: url(../imgs/page/booking/luggage.svg);
	background-position: left center;
	background-repeat: no-repeat;
}
.list-extras {
	position: relative;
}
.list-extras .item-extra {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #e5e5e5;
}
.list-extras .item-extra .extra-info span.price {
	font-size: 14px;
	line-height: 24px;
	background-color: #e95440;
	display: inline-block;
	padding: 3px 14px;
	border-radius: 40px;
	color: #fff;
	vertical-align: middle;
	margin-left: 10px;
}
.list-extras .item-extra .extra-quantity {
	position: relative;
	max-width: 130px;
	width: 100%;
	min-width: 130px;
}
.list-extras .item-extra .extra-quantity span.minus {
	position: absolute;
	left: 0;
	top: 0;
	height: 40px;
	width: 40px;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	background: #fff url(../imgs/page/booking/minus.svg) no-repeat center;
	cursor: pointer;
}
.list-extras .item-extra .extra-quantity span.minus:hover {
	border-color: #181a1f;
	background-color: #f6f6f6;
}
.list-extras .item-extra .extra-quantity input.form-control {
	border: 0;
	width: 100%;
	text-align: center;
	padding: 0;
	height: 40px;
	color: #181a1f;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	background-color: #fff;
	min-height: 40px;
}
.list-extras .item-extra .extra-quantity span.plus {
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	width: 40px;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	background: #fff url(../imgs/page/booking/plus.svg) no-repeat center;
	cursor: pointer;
}
.list-extras .item-extra .extra-quantity span.plus:hover {
	border-color: #181a1f;
	background-color: #f6f6f6;
}
.sidebar .list-prices li span.price {
	min-width: 92px;
	max-width: 92px;
	text-align: right;
}
.list-prices-2 li {
	border-bottom: 0;
	padding-bottom: 5px;
	padding-top: 5px;
}
.box-content-detail {
	padding-right: 40px;
}
.box-content-detail select.form-control {
	-webkit-appearance: revert;
	-moz-appearance: revert;
	appearance: revert;
	padding-top: 0;
	padding-bottom: 0;
}
.box-completed-booking {
	max-width: 740px;
	margin: auto;
	padding: 120px 0 90px 0;
}
.box-booking-border {
	border-radius: 6px;
	border: 1px solid #e5e5e5;
	padding: 50px;
	margin-bottom: 30px;
}
.box-info-book-border {
	padding: 40px 20px;
	border: 1px dashed #181a1f;
	border-radius: 6px;
	display: flex;
	align-items: center;
	background-color: #f6f6f6;
	margin-bottom: 30px;
}
.box-info-book-border .info-1 {
	width: 25%;
	padding: 0 10px;
}
.cb-agree,
.cb-subscriber {
	float: left;
	margin: 2px 10px 0 0;
}
.list-prices li .text-top {
	min-width: 140px;
	display: inline-block;
}
.box-breadcrumb ul li {
	display: inline-block;
	position: relative;
	padding: 0 22px 0 0;
}
.box-breadcrumb ul li::before {
	content: "-";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 4px;
	color: #fff;
}
.box-breadcrumb ul li:last-child::before {
	display: none;
}
.box-breadcrumb ul li a {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}
.cardNewsList .cardNews {
	display: flex;
	align-items: center;
}
.cardNewsList .cardNews > a {
	max-width: 320px;
	margin-right: 30px;
	width: 100%;
}
.cardNewsList .cardNews .cardInfo {
	width: 100%;
}
.cardNewsList .cardNews .cardInfo .mb-20 {
	margin-bottom: 15px !important;
}
.sidebar-radius {
	border-radius: 6px;
	border: 1px solid #e5e5e5;
	padding: 30px;
	margin-bottom: 30px;
}
.sidebar-radius .sidebar-title {
	margin-bottom: 30px;
}
.sidebar-content ul li {
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
}
.sidebar-content ul li:last-child {
	margin-bottom: 0;
}
.sidebar-content ul li a {
	font-size: 16px;
	line-height: 26px;
	color: #181a1f;
	text-decoration: none;
}
.sidebar-content ul li a:hover {
	text-decoration: underline;
}
.box-form-search {
	margin-bottom: 30px;
	position: relative;
}
.recent-post {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.recent-post .image-post {
	max-width: 90px;
	min-width: 90px;
	width: 100%;
	margin-right: 20px;
}
.recent-post .image-post img {
	border-radius: 6px;
	display: block;
}
.recent-post .info-post {
	width: 100%;
}
.recent-post .info-post .date-post {
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	color: #181a1f;
}
.recent-post .info-post .link-post {
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #181a1f;
	-webkit-line-clamp: 2;
	max-height: 47px;
	display: inline-block;
	width: 100%;
	-webkit-box-orient: vertical;
	-o-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cardNewsBig .cardNews .cardInfo .text-20-medium {
	font-size: 36px;
	line-height: 58px;
}
.box-frature-image .cardImage {
	margin-bottom: 20px;
	position: relative;
}
.box-frature-image .cardImage img {
	border-radius: 6px;
	width: 100%;
	display: block;
}
.box-frature-image .cardImage::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-image: url(../imgs/page/homepage1/bg-trans2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.box-frature-image .cardImage .datePost {
	position: absolute;
	top: 20px;
	left: 30px;
	z-index: 2;
}
.box-frature-image .cardImage .datePost .heading-52-medium {
	line-height: 52px;
}
.box-frature-image .cardImage .datePost .color-white {
	color: #fff !important;
}
.content-single p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 30px;
}
.content-single img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	width: 100%;
}
.content-single blockquote {
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	font-style: italic;
	margin-bottom: 30px;
	color: #181a1f;
	padding: 20px 10px 30px 75px;
	border-left: 5px solid #e95440;
	background-image: url(../imgs/page/blog2/quote.png);
	background-position: top 7px left 22px;
	background-repeat: no-repeat;
}
.content-single h1,
.content-single h2 {
	font-size: 44px;
	line-height: 76px;
	font-weight: 500;
	margin-bottom: 30px;
}
.content-single h3,
.content-single h4 {
	font-size: 34px;
	line-height: 66px;
	margin-bottom: 30px;
	font-weight: 500;
}
.social-single .icon-socials {
	border-radius: 50%;
}
.social-single .icon-socials.icon-facebook {
	background: #fdeeec url(../imgs/template/icons/fb-black.png) no-repeat center;
}
.social-single .icon-socials.icon-twitter {
	background: #fdeeec url(../imgs/template/icons/tw-black.png) no-repeat center;
}
.social-single .icon-socials.icon-instagram {
	background: #fdeeec url(../imgs/template/icons/instagram-black.png) no-repeat
		center;
}
.social-single .icon-socials.icon-linkedin {
	background: #fdeeec url(../imgs/template/icons/linkedin-black.png) no-repeat
		center;
}
.author-box {
	display: inline-block;
	width: 100%;
}
.author-box .item-author {
	display: flex;
	width: 100%;
}
.author-box .item-author .item-author-image {
	width: 100%;
	min-width: 70px;
	max-width: 70px;
	margin-right: 30px;
}
.author-box .item-author .item-author-image img {
	border-radius: 50%;
	height: 70px;
	width: 70px;
	display: block;
}
.author-box .item-author .item-author-info {
	width: 100%;
}
.box-pager-prev-inner {
	padding-left: 40px;
}
.box-pager-next-inner {
	padding-right: 40px;
	text-align: right;
}
.box-pager-inner {
	position: relative;
}
.box-pager-inner a.prev-page {
	position: relative;
	display: inline-block;
	padding-left: 40px;
}
.box-pager-inner a.prev-page svg {
	position: absolute;
	left: 0;
	top: 0;
	height: 25px;
}
.box-pager-inner a.prev-page:hover,
.box-pager-inner a.prev-page:hover * {
	color: #e95440;
}
.box-pager-inner a.next-page {
	position: relative;
	display: inline-block;
	padding-right: 40px;
}
.box-pager-inner a.next-page svg {
	position: absolute;
	right: 0;
	top: 1px;
	height: 25px;
}
.box-pager-inner a.next-page:hover,
.box-pager-inner a.next-page:hover * {
	color: #e95440;
}
.item-reviews {
	margin-bottom: 30px;
}
.item-reviews .item-author-info {
	display: flex;
	width: 100%;
	margin-bottom: 30px;
	align-items: center;
}
.item-reviews .item-author-info .item-avatar {
	width: 70px;
	height: 70px;
	background-color: #181a1f;
	border-radius: 50%;
	margin-right: 20px;
	color: #fff;
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
	line-height: 70px;
	text-align: center;
}
.item-reviews .item-desc {
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
}
.item-reviews .buttons-like {
	display: inline-block;
	width: 100%;
}
textarea.form-control {
	height: auto;
	height: 160px;
}
.form-group {
	position: relative;
	margin-bottom: 30px;
}
.form-group label {
	position: absolute;
	top: 15px;
	left: 10px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	transition: top 150ms ease-out;
	padding: 0 10px;
	font-size: 16px;
	font-weight: 500;
	color: #181a1f;
}
.form-control {
	background-color: #f6f6f6;
	border: 2px solid #f6f6f6;
	border-radius: 6px;
	min-height: 55px;
	font-size: 16px;
	font-weight: 500;
	color: #181a1f;
	width: 100%;
}
.form-control.filled,
.form-control:focus {
	border-color: #181a1f;
	background-color: #fff;
}
.focused label {
	top: -11px;
	background-color: #fff;
	color: #626262;
}
@media (max-width: 1550px) {
	.cardFleet {
		padding: 15px;
	}
	.cardFleet .cardInfoBottom .luggage .icon-circle,
	.cardFleet .cardInfoBottom .passenger .icon-circle {
		margin-right: 7px;
	}
}
@media (max-width: 1399.98px) {
	.header .main-header .header-left .header-right {
		width: 25%;
	}
	.header .main-header .header-left .header-nav {
		width: 86%;
	}
	.banner-home2,
	.block-padding-100 {
		padding-left: 10px;
		padding-right: 10px;
	}
	.bg-our-service-home-7 .box-pagination-fleet .swiper-button-next-fleet {
		right: -80px;
	}
	.bg-our-service-home-7 .box-pagination-fleet .swiper-button-prev-fleet {
		left: -80px;
	}
	.box-number-banner {
		padding-left: 5px;
	}
	.box-header-home4 {
		padding: 0 15px;
	}
	.header.header-homepage9 .container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
	.header.header-homepage9 .main-header .header-left .header-nav {
		width: 50%;
	}
	.header.header-homepage9 .main-header .header-left .header-logo {
		width: 14%;
	}
	.header.header-homepage9 .main-header .header-left .header-right {
		width: 36%;
	}
	.box-our-fleet-home8 .fleet-style-3 {
		padding-left: 60px;
		padding-right: 60px;
	}
	.box-our-fleet-home8
		.fleet-style-3
		.box-pagination-fleet
		.swiper-button-next-fleet {
		right: -80px;
	}
	.box-our-fleet-home8
		.fleet-style-3
		.box-pagination-fleet
		.swiper-button-prev-fleet {
		left: -80px;
	}
}
@media (max-width: 1199.98px) {
	.header {
		padding: 10px 0;
	}
	.header .header-right .btn.btn-brand-1 {
		padding: 8px 16px;
	}
	.header-top-sub {
		display: none;
	}
	.burger-icon {
		display: inline-block;
	}
	.header .burger-icon {
		display: block;
	}
	.header .main-header .header-left .header-right {
		width: 100%;
		text-align: right;
		padding-right: 40px;
	}
	.header .main-header .header-left .header-nav {
		width: 0%;
	}
	.box-search-ride {
		flex-wrap: wrap;
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		margin-top: 20px;
		padding: 0 15px;
	}
	.header .container {
		max-width: 100%;
	}
	.box-cover-image {
		height: 700px;
	}
	.box-search-ride .search-item {
		background: #f6f6f6;
		padding: 10px;
		border-radius: 6px;
		margin-bottom: 20px;
		width: 100%;
		min-width: auto;
		max-width: 100%;
	}
	.box-search-ride .search-item .search-icon .item-icon {
		background-color: #fff;
		border-radius: 6px;
		width: 44px;
		height: 44px;
	}
	.box-search-ride .search-item .search-icon {
		max-width: 44px;
		min-width: 44px;
		margin-right: 10px;
	}
	.box-search-ride .search-item.search-button {
		width: 100%;
		border-radius: 6px;
		text-align: center;
		padding: 0;
	}
	.box-search-ride .search-item.search-button .btn-search {
		border-radius: 6px;
		width: 100%;
	}
	.ui-timepicker-standard {
		margin-top: 25px;
		margin-left: 0;
	}
	.box-dropdown-location {
		top: 45px;
		left: 65px;
	}
	.box-search-ride-style-2 .box-search-tabs {
		right: auto;
		bottom: auto;
		position: relative;
		max-width: 100%;
	}
	.box-banner-homepage-2 .box-banner-info {
		top: 200px;
		margin-left: 20px;
		right: auto;
		max-width: 500px;
		padding-left: 30px;
	}
	.banner-home5 .box-banner-info {
		top: 30%;
	}
	.box-search-ride-style-2 {
		padding: 0;
	}
	.box-fleet-cover {
		padding-left: 10px;
		padding-right: 10px;
	}
	.box-search-ride-style-3 .box-dropdown-location {
		left: 0;
		max-width: 430px;
		width: 100%;
	}
	.box-search-ride-style-3 .search-item {
		background-color: #fff;
	}
	.box-search-ride-style-3 {
		padding: 0;
	}
	.header .header-top-sub .main-header .header-left .header-right {
		width: 100%;
	}
	.header-top-sub {
		padding: 15px 0;
	}
	.header-homepage5 {
		padding: 0 0;
	}
	.box-socials-header {
		padding-right: 35px;
	}
	.box-the-trip-right {
		max-width: 40%;
	}
	.bg-our-service-home-7 .box-slide-fleet-2 {
		padding: 0 80px;
	}
	.bg-our-service-home-7::before {
		height: 410px;
	}
	.header.header-7 .main-header .header-left .header-right {
		min-width: 255px;
	}
	.box-banner-homepage6-left {
		padding-left: 15px;
		padding-right: 15px;
	}
	.box-search-ride-3 {
		padding: 15px 15px;
		border-radius: 8px;
	}
	.box-search-ride-style-6 .tab-content .box-form-search {
		flex-wrap: wrap;
	}
	.box-search-ride-style-6 .search-item {
		margin-right: 1%;
		width: 48%;
		margin-left: 1%;
	}
	.header.header-homepage9 .main-header .header-left .header-right {
		width: 80%;
	}
	.header.header-homepage9 .main-header .header-left .header-logo {
		width: 20%;
		text-align: left;
	}
	.header.header-homepage9 .main-header .header-left .header-nav {
		width: 0%;
	}
	.header.header-homepage9 .container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
	.box-comfortable-home9 {
		padding: 0 20px;
	}
	.banner-home9 {
		padding-left: 20px;
		padding-right: 20px;
	}
	.latest-new-home9 {
		padding: 0 20px;
	}
	.box-pdrl-60,
	.footer-7 {
		padding: 0 20px;
	}
	.box-search-ride-5 {
		margin-top: 0;
		padding: 15px 15px 0 15px;
	}
	.box-search-ride-5 .search-item {
		background-color: #000;
	}
	.box-search-ride-5 .search-item .search-icon .item-icon {
		background-color: rgba(255, 255, 255, 0.2039215686);
		border-radius: 50%;
	}
	.box-our-fleet-home8
		.fleet-style-3
		.box-pagination-fleet
		.swiper-button-next-fleet {
		right: -70px;
	}
	.box-our-fleet-home8
		.fleet-style-3
		.box-pagination-fleet
		.swiper-button-prev-fleet {
		left: -70px;
	}
	.box-main-slider {
		top: 32%;
	}
}
@media (max-width: 991.98px) {
	.box-container-sw .box-swiper {
		padding-left: 30px;
	}
	.box-container-sw .box-button-slider {
		left: 30px;
	}
	.box-region-right {
		padding-left: 0;
	}
	.list-logos li {
		text-align: left;
	}
	.box-video .btn-play {
		left: 0;
		right: 0;
		margin: auto;
		top: 0;
		bottom: 0;
	}
	.cardService.cardServiceStyle5,
	.cardServiceStyle4 {
		height: auto;
	}
	.bg-how-it-works::after {
		content: "";
		width: 100%;
		height: 430px;
		background-position: center;
	}
	.box-cover-image {
		height: 600px;
	}
	.bg-how-it-works::before {
		background-size: cover;
	}
	.box-list-how ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.box-list-how ul li {
		width: 100%;
		height: 100%;
	}
	.bg-testimonial .box-region-right {
		padding-left: 0;
	}
	.swiper-group-testimonials-2 .swiper-slide {
		padding: 0;
	}
	.box-pagination-button-testimonials-2 {
		padding-left: 0;
		padding-top: 60px;
	}
	.bg-download-2::before {
		display: none;
	}
	.box-list-how ul li.has-arrow {
		padding-right: 0;
		padding-bottom: 100px;
		background-position: center bottom 20px;
	}
	.box-fleet-padding {
		padding-top: 90px;
		padding-bottom: 50px;
	}
	.box-image-how {
		padding-left: 0;
	}
	.box-customers-say {
		padding-right: 0;
	}
	.bg-download-3::before {
		background-image: none;
	}
	.box-btn-play {
		left: 0;
	}
	.cardServiceStyle3 {
		height: 290px;
	}
	.box-form-service-single .box-search-ride-style-2 .box-search-tabs {
		bottom: auto;
		position: relative;
		max-width: 100%;
		right: auto;
	}
	.box-banner-right {
		display: none;
	}
	.box-the-trip-right {
		display: none;
	}
	.box-the-trip {
		max-width: 100%;
	}
	.inner-invoice {
		padding: 50px 30px 0 30px;
	}
	.invoice-left,
	.invoice-right {
		width: 50%;
		max-width: 100%;
	}
	.box-booking-tabs .item-tab .box-tab-step .icon-tab .icon-book {
		background-size: 25px;
		height: 50px;
		width: 50px;
		line-height: 50px;
		margin-right: 10px;
	}
	.box-booking-tabs .item-tab .box-tab-step .number-tab span {
		font-size: 20px;
		line-height: 48px;
	}
	.box-row-tab .box-tab-left {
		width: 61%;
	}
	.box-row-tab .box-tab-right {
		width: 39%;
	}
	.box-content-detail {
		padding-right: 0;
	}
	.item-vehicle .vehicle-left {
		padding: 0 10px;
		position: relative;
		width: 100%;
		border-right: 0px solid #e5e5e5;
		margin-right: 0;
		margin-bottom: 30px;
		border-bottom: 1px solid #e5e5e5;
		padding-bottom: 30px;
	}
	.item-vehicle .vehicle-right {
		width: 100%;
	}
	.item-vehicle {
		flex-wrap: wrap;
	}
	.box-offices {
		padding-left: 0;
	}
	.box-banner-homepage7-left {
		padding: 50px 10px 60px 10px;
	}
	.box-some-number {
		text-align: center;
	}
	.box-number-banner .number-1:first-child {
		padding-left: 0;
	}
	.box-number-banner {
		padding-right: 5px;
	}
	.bg-right-trip {
		display: none;
	}
	.cardNumberTitleDesc::before {
		display: none;
	}
	.block-news-padding-60::before,
	.block-padding-60::before {
		left: 0;
	}
	.box-reliability .container-sub::before {
		width: auto;
		right: 10px;
	}
	.box-number-servered {
		right: 20px;
	}
	.banner-home9 {
		padding-left: 0;
		padding-right: 0;
	}
	.box-comfortable-home9 {
		padding: 0 0;
	}
	.latest-new-home9 {
		padding: 0 0;
	}
	.box-pdrl-60,
	.footer-7 {
		padding: 0 0;
	}
	.banner-home8 .box-cover-image {
		height: auto !important;
		padding-bottom: 5px;
		padding-top: 50px;
	}
	.box-main-slider {
		top: auto;
		width: 100%;
		position: relative;
		right: auto;
		max-width: 100%;
		margin-bottom: 0;
	}
	.slider-nav-thumbnails {
		max-width: 100%;
	}
	.width-20 {
		width: 33.33%;
	}
	.detail-gallery {
		min-height: auto;
	}
}
@media (max-width: 767.98px) {
	.mobile-header-wrapper-style
		.mobile-header-wrapper-inner
		.mobile-header-top
		.mobile-header-logo
		a
		img {
		max-width: 140px;
	}
	.cardFleet {
		padding: 15px;
	}
	.width-20 {
		width: 33.33%;
		margin-bottom: 30px;
	}
	.width-25 {
		margin-bottom: 30px;
		width: 50%;
	}
	.menu-bottom {
		display: inline-block;
		width: 100%;
		padding: 15px 0;
	}
	.bg-download::before {
		display: none;
	}
	.box-cover-image {
		height: 500px;
	}
	.box-banner-homepage-2 .box-banner-info {
		top: 50%;
		transform: translateY(-50%);
		margin-left: 10px;
		right: auto;
		max-width: 400px;
	}
	.banner-home5 .box-banner-info {
		top: 30%;
	}
	.box-search-ride-style-2 .box-form-search {
		padding: 15px;
	}
	.nav-tabs-search li {
		padding: 0 15px;
	}
	.nav-tabs-search li a {
		padding: 20px 0;
	}
	.banner-home-4.pt-150 {
		padding-top: 70px !important;
	}
	.cardIconTitleDescLeft .cardIconTitleDesc {
		padding: 20px 20px 10px 20px;
	}
	.heading-100-medium {
		font-size: 50px;
		line-height: 70px;
	}
	.table-invoice thead th {
		padding: 11px 11px;
		font-size: 16px;
		line-height: 24px;
	}
	.table-invoice tbody tr td {
		padding: 13px 11px;
	}
	.box-invoice {
		margin-top: 55px;
		margin-bottom: 50px;
	}
	.box-booking-tabs {
		flex-wrap: wrap;
	}
	.box-booking-tabs .item-tab {
		width: 50%;
	}
	.box-row-tab .box-tab-left {
		width: 100%;
	}
	.box-row-tab .box-tab-right {
		width: 100%;
	}
	.box-booking-tabs .item-tab .box-tab-step {
		padding: 15px 0;
	}
	.box-info-book-border {
		flex-wrap: wrap;
		padding-bottom: 10px;
	}
	.box-info-book-border .info-1 {
		width: 50%;
		margin-bottom: 30px;
	}
	.cardImageLeftTextRight .cardImage {
		padding: 10px;
		margin-right: 15px;
		line-height: 70px;
	}
	.cardImageLeftTextRight {
		margin-bottom: 30px;
	}
	.cardServiceStyle5 {
		flex-wrap: wrap;
	}
	.cardServiceStyle5 .cardImage {
		width: 100%;
		margin-bottom: 30px;
	}
	.cardServiceStyle5 .cardInfo {
		width: 100%;
		padding-left: 0;
	}
	.box-number-servered {
		right: 10px;
		left: 10px;
	}
	.width-20 {
		width: 50%;
	}
}
@media (max-width: 575.98px) {
	.header {
		padding: 10px 0;
		min-height: 60px;
	}
	.header-homepage5 {
		padding: 0;
	}
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
	.box-container-sw .swiper-button-next,
	.box-container-sw .swiper-button-prev {
		display: block;
	}
	.swiper-button-next-banner,
	.swiper-button-next-fleet,
	.swiper-button-prev-banner,
	.swiper-button-prev-fleet {
		display: inline-block;
	}
	.box-showcase {
		padding-left: 10px;
		padding-right: 10px;
	}
	.width-20 {
		width: 50%;
	}
	.width-25 {
		width: 100%;
	}
	.menu-bottom li {
		margin-bottom: 10px;
	}
	.footer-bottom .mr-50 {
		margin-right: 0 !important;
	}
	.list-logos {
		overflow: hidden;
	}
	.list-logos li {
		min-width: 125px;
	}
	.list-logos li img {
		max-width: 80%;
	}
	.bg-how-it-works::after {
		height: 290px;
	}
	.box-cover-image {
		height: 350px;
	}
	.box-pagination-button {
		top: 20%;
	}
	.box-banner-info .heading-52-medium {
		font-weight: 500;
		font-size: 25px;
		line-height: 35px;
	}
	.box-banner-homepage-2 .box-banner-info {
		top: 110px;
	}
	.banner-home5 .box-banner-info {
		top: 30%;
	}
	.box-fleet-cover {
		padding-left: 10px;
		padding-right: 10px;
	}
	.box-pagination-button-2 {
		display: none;
	}
	.banner-home5 .swiper-slide {
		padding-right: 0;
	}
	.box-socials-header,
	.header-top-main .icon-socials {
		display: none !important;
	}
	.header .header-top-sub .main-header .header-left .header-nav {
		width: 0%;
	}
	.cardServiceStyle3 .cardImage img {
		max-height: none;
	}
	.header-top-main .burger-icon {
		top: 21px;
		right: 15px;
	}
	.box-dropdown-cart {
		padding-right: 25px;
	}
	.pagination li a {
		max-width: 40px;
		min-width: 40px;
		padding: 9px 0;
	}
	.pagination li .page-next,
	.pagination li .page-prev {
		min-height: 44px;
		padding: 8px 0;
	}
	.cardNewsList .cardNews {
		flex-wrap: wrap;
	}
	.cardNewsList .cardNews > a {
		max-width: 100%;
		margin-right: 0;
		width: 100%;
	}
	.invoice-top {
		flex-wrap: wrap;
	}
	.invoice-left,
	.invoice-right {
		width: 100%;
	}
	.link-grey li a {
		font-weight: 500;
		font-size: 22px;
	}
	.number-1 .heading-44-medium {
		font-size: 25px;
		line-height: 35px;
	}
	.number-1 .text-20 {
		font-size: 16px;
	}
	.box-number-banner .number-1 {
		padding-left: 15px;
	}
	.bg-our-service-home-7 .box-pagination-fleet .swiper-button-next-fleet,
	.bg-our-service-home-7 .box-pagination-fleet .swiper-button-prev-fleet {
		display: none;
	}
	.bg-our-service-home-7 .box-slide-fleet-2 {
		padding: 0;
	}
	.box-banner-info {
		flex-wrap: wrap;
		top: 25%;
	}
	.banner-info-left {
		margin-bottom: 15px;
	}
	.banner-home10 .box-cover-image {
		height: 420px;
	}
	.box-search-ride-style-6 .search-item.search-button {
		min-width: 100%;
		max-width: 100%;
	}
	.box-search-ride-style-6 .search-item {
		margin-right: 0;
		width: 100%;
		margin-left: 0;
	}
	.box-our-fleet-home8
		.fleet-style-3
		.box-pagination-fleet
		.swiper-button-next-fleet {
		display: none;
	}
	.box-our-fleet-home8
		.fleet-style-3
		.box-pagination-fleet
		.swiper-button-prev-fleet {
		display: none;
	}
	.box-our-fleet-home8 .fleet-style-3 {
		padding-left: 0;
		padding-right: 0;
	}
	.box-slider-customers {
		padding: 50px 70px 50px 10px;
	}
	.swiper-pagination-number {
		right: 10px;
	}
}
@media (max-width: 499.98px) {
	.width-20 {
		width: 100%;
	}
	.heading-44-medium {
		font-size: 36px;
		line-height: 50px;
	}
	.ui-datepicker {
		max-width: 360px;
	}
	.ui-state-default,
	.ui-widget-content .ui-state-default {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.box-dropdown-location {
		top: 45px;
		left: 0;
		max-width: 430px;
		width: 100%;
	}
	.heading-52-medium {
		font-size: 35px;
		line-height: 55px;
	}
	.cardServiceStyle3 {
		height: 410px;
	}
	.content-single blockquote {
		padding-left: 55px;
		background-position: top 7px left 14px;
	}
	.box-count .deals-countdown .countdown-section .countdown-amount {
		font-size: 35px;
		line-height: 55px;
	}
	.box-count .deals-countdown .countdown-section .countdown-period {
		font-size: 18px;
		line-height: 24px;
	}
	.box-invoice-block {
		padding: 0 5px;
	}
	.inner-invoice {
		padding: 30px 10px 0 10px;
	}
	.box-search-ride-style-6 .nav-tabs-search li a {
		padding: 10px 15px;
		font-size: 14px;
		line-height: 24px;
	}
	.box-info-reliability {
		padding: 30px;
	}
}
@media (max-width: 449.98px) {
	.box-footer-top .mr-30 {
		margin-right: 10px !important;
	}
	.cardService.cardServiceStyle5,
	.cardServiceStyle4 {
		height: auto;
	}
	.box-cover-image {
		height: 250px;
	}
	.box-button-login {
		display: none !important;
	}
	.header-top-sub .box-button-login {
		display: inline-block !important;
	}
	.box-banner-homepage-2 .box-banner-info {
		top: 40px;
	}
	.banner-home5 .box-banner-info {
		top: 30%;
	}
	.header-top-1 {
		display: none;
	}
	.card-plan {
		padding: 34px 20px 39px 20px;
	}
	.heading-100-medium {
		font-size: 40px;
		line-height: 60px;
	}
	.table-invoice thead th {
		padding: 11px 5px;
		font-size: 14px;
		line-height: 18px;
	}
	.table-invoice tbody tr td {
		padding: 12px 5px;
		font-size: 12px;
		line-height: 16px;
	}
	.table-invoice tbody tr td .text-18-medium {
		font-size: 16px;
		line-height: 28px;
	}
	.box-booking-tabs .item-tab {
		padding: 0 10px;
	}
	.item-vehicle .vehicle-left .vehicle-facilities .text-fact {
		width: 100%;
	}
	.box-info-book-border {
		padding: 20px 5px 0 5px;
	}
	.box-booking-border .list-prices li {
		flex-wrap: wrap;
	}
	.box-booking-border .list-prices li .text-top {
		width: 100%;
		color: #626262;
		display: block;
		padding-bottom: 10px;
	}
	.box-booking-border {
		padding: 30px;
	}
	.sidebar {
		padding: 20px 15px;
	}
	.heading-44-medium {
		font-size: 30px;
		line-height: 40px;
	}
	.list-extras .item-extra .extra-quantity {
		max-width: 115px;
		min-width: 115px;
	}
	.list-extras .item-extra {
		flex-wrap: wrap;
	}
	.list-extras .item-extra .extra-info {
		width: 100%;
		margin-bottom: 30px;
	}
	.number-1 .heading-44-medium {
		font-size: 20px;
		line-height: 25px;
	}
	.number-1 .text-20 {
		font-size: 15px;
	}
	.box-number-banner .number-1 {
		padding-left: 15px;
	}
	.ui-datepicker.ui-widget.ui-widget-content {
		padding: 10px;
	}
	.ui-datepicker th {
		padding: 14px 4px 4px 4px;
		font-size: 14px;
		line-height: 28px;
	}
	.ui-state-default,
	.ui-widget-content .ui-state-default {
		width: 25px;
		height: 25px;
		line-height: 25px;
	}
	.ui-datepicker {
		max-width: 260px;
	}
	.ui-timepicker-standard {
		width: 190px !important;
	}
}
@media (max-width: 349.98px) {
	.mobile-header-wrapper-style {
		width: 310px;
	}
	.perfect-scroll {
		width: 100%;
	}
	.author-box .item-author .item-author-image {
		margin-right: 10px;
	}
	.heading-100-medium {
		font-size: 35px;
		line-height: 55px;
	}
	.box-booking-tabs .item-tab {
		width: 100%;
	}
	.box-booking-border {
		padding: 20px 15px;
	}
	.box-booking-tabs .item-tab .box-tab-step .number-tab span {
		font-size: 35px;
		line-height: 58px;
	}
	.box-list-how ul {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}
@media (min-width: 1400px) {
	.container.wide {
		max-width: 1544px;
	}
}
.page-content p {
	margin-bottom: 15px;
}
.payment-methods-section {
	background: linear-gradient(135deg, #1a1a1a 0, #2d2d2d 100%);
	position: relative;
	padding: 60px 0;
	text-align: center;
}
.sumup-processor-container {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(0, 123, 255, 0.3);
	border-radius: 20px;
	padding: 40px 60px;
	display: inline-block;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}
.sumup-processor-container:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(0, 123, 255, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}
.sumup-logo {
	height: 80px;
	width: auto;
	max-width: 200px;
	transition: all 0.3s ease;
	filter: brightness(1.1);
}
.sumup-processor-container:hover .sumup-logo {
	transform: scale(1.05);
	filter: brightness(1.2);
}
.accepted-methods-container {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	padding: 40px 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.payment-methods-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: center;
	align-items: center;
	gap: 25px;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}
.payment-method-item {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 25px 20px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	min-height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.payment-method-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 255, 255, 0.2);
}
.payment-logo {
	height: 50px;
	width: auto;
	max-width: 120px;
	transition: all 0.3s ease;
	filter: brightness(1.1);
}
.payment-method-name {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin-top: 5px;
	opacity: 0.9;
}
.payment-method-item:hover .payment-logo {
	transform: scale(1.08);
	filter: brightness(1.2);
}
@media (max-width: 1200px) {
	.payment-methods-grid {
		max-width: 700px;
		gap: 20px;
	}
	.payment-method-item {
		padding: 20px 15px;
		min-height: 110px;
	}
	.payment-logo {
		height: 45px;
		max-width: 110px;
	}
	.sumup-logo {
		height: 70px;
		max-width: 180px;
	}
	.sumup-processor-container {
		padding: 35px 50px;
	}
}
@media (max-width: 992px) {
	.payment-methods-section {
		padding: 50px 0;
	}
	.payment-methods-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 500px;
		gap: 20px;
	}
	.payment-method-item {
		padding: 20px 15px;
		min-height: 100px;
	}
	.payment-logo {
		height: 45px;
		max-width: 110px;
	}
	.sumup-logo {
		height: 65px;
		max-width: 160px;
	}
	.sumup-processor-container {
		padding: 30px 40px;
	}
	.accepted-methods-container {
		padding: 30px 20px;
	}
}
@media (max-width: 768px) {
	.payment-methods-section {
		padding: 40px 0;
	}
	.payment-methods-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding: 0 15px;
		max-width: 100%;
	}
	.payment-method-item {
		padding: 18px 12px;
		min-height: 90px;
	}
	.payment-logo {
		height: 40px;
		max-width: 90px;
	}
	.payment-method-name {
		font-size: 12px;
	}
	.sumup-logo {
		height: 60px;
		max-width: 140px;
	}
	.sumup-processor-container {
		padding: 25px 30px;
	}
	.accepted-methods-container {
		padding: 25px 15px;
	}
}
@media (max-width: 576px) {
	.payment-methods-section {
		padding: 35px 0;
	}
	.payment-methods-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		padding: 0 10px;
	}
	.payment-method-item {
		padding: 15px 10px;
		min-height: 85px;
	}
	.payment-logo {
		height: 35px;
		max-width: 80px;
	}
	.payment-method-name {
		font-size: 11px;
	}
	.sumup-logo {
		height: 55px;
		max-width: 120px;
	}
	.sumup-processor-container {
		padding: 20px 25px;
	}
	.accepted-methods-container {
		padding: 20px 10px;
	}
}
@media (max-width: 480px) {
	.payment-methods-section {
		padding: 30px 0;
	}
	.payment-methods-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 0 8px;
	}
	.payment-method-item {
		padding: 12px 8px;
		min-height: 80px;
		border-radius: 12px;
	}
	.payment-logo {
		height: 30px;
		max-width: 70px;
	}
	.payment-method-name {
		font-size: 10px;
	}
	.sumup-logo {
		height: 50px;
		max-width: 100px;
	}
	.sumup-processor-container {
		padding: 18px 20px;
	}
	.accepted-methods-container {
		padding: 18px 8px;
	}
}
@media (max-width: 360px) {
	.payment-methods-grid {
		grid-template-columns: 1fr;
		gap: 10px;
		max-width: 280px;
	}
	.payment-method-item {
		padding: 12px 15px;
		min-height: 65px;
	}
	.payment-logo {
		height: 32px;
		max-width: 100px;
	}
}
/* Mobile menu scroll fix - replaces PerfectScrollbar */
.mobile-header-wrapper-inner {
	max-height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-header-wrapper-inner::-webkit-scrollbar {
	width: 4px;
}

.mobile-header-wrapper-inner::-webkit-scrollbar-track {
	background: transparent;
}

.mobile-header-wrapper-inner::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

.mobile-header-wrapper-inner::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

/* Mobile menu scroll fix - replaces PerfectScrollbar */
.mobile-header-wrapper-inner {
	max-height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-header-wrapper-inner::-webkit-scrollbar {
	width: 4px;
}

.mobile-header-wrapper-inner::-webkit-scrollbar-track {
	background: transparent;
}

.mobile-header-wrapper-inner::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

.mobile-header-wrapper-inner::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}
