:root {
  /* Orange */
  --orange-30: #b33828;
  --orange-40: #e56a54;
  --orange-60: #f39780;
  --orange-80: #ffd1c6;
  /* Blue */
  --blue-30: #366398;
  --blue-40: #4876AB;
  --blue-60: #7AA2D6;
  --blue-80: #AED1F0;
  --blue-100: #E9F3FC;
  /* Gray */
  --gray-20: #3A3A47;
  --gray-30: #515162;
  --gray-40: #696979;
  --gray-60: #8F8FA2;
  --gray-80: #D3D4DD;
  --gray-90: #F0F0F5;
  /* White */
  --white: #fff;
  --black: #000;
}

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
}
/* Btn General */
.btn {
	padding: 11px 15px;
	font-size: var(--normal);
	font-weight: 700;
}
.btn-check:focus+.btn,
.btn:focus {
	box-shadow: 0 0 0 0.25rem var(--orange-80);
}

/* Btn General Disabled */
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn { opacity: inherit; }

/* Btn Small */
.btn-group-sm > .btn,
.btn-sm {
	padding: 6px 15px;
	font-size: var(--small);
}

/* Btn Large */
.btn-group-lg>.btn,
.btn-lg {
	padding: 17px 15px;
	font-size: var(--h6);
}

/* Primary */
.btn-primary {
	color: var(--white);
	background-color: var(--orange-40);
	border-color: var(--orange-40);
}
.btn-primary:hover {
	color: var(--white);
	background-color: var(--orange-30);
	border-color: var(--orange-30);
}
.btn-check:focus+.btn-primary,
.btn-primary:focus {
	color: var(--white);
	background-color: var(--orange-40);
	border-color: var(--orange-40);
	box-shadow: 0 0 0 0.25rem var(--orange-80);
}
.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 var(--orange-80);
}
.btn-primary.disabled,
.btn-primary:disabled {
	color: var(--white);
	background-color: var(--orange-80);
	border-color: var(--orange-80);
}

/* Primary Outline */
.btn-outline-primary {
	color: var(--orange-40);
	border-color: var(--orange-40);
}
.btn-outline-primary:hover {
	color: var(--orange-30);
	background-color: transparent;
	border-color: var(--orange-30);
}
.btn-check:focus+.btn-outline-primary, .btn-outline-primary:focus {
	box-shadow: 0 0 0 0.25rem var(--orange-80);
}
.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: var(--orange-40);
	background-color: transparent;
	border-color: var(--orange-40);
}
.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 var(--orange-80);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: var(--orange-80);
	background-color: transparent;
	border-color: var(--orange-80);
}

/* Dark Outline */
.btn-outline-dark {
	color: var(--gray-20);
	border-color: var(--gray-40);
}
.btn-outline-dark:hover {
	color: var(--gray-20);
	background-color: var(--gray-80);
	border-color: var(--gray-30);
}
.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
	box-shadow: 0 0 0 0.25rem var(--orange-80);
}
.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: var(--gray-20);
	background-color: transparent;
	border-color: var(--gray-40);
}
.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 var(--orange-80);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
	color: var(--gray-80);
	background-color: transparent;
	border-color: var(--gray-80);
}

/* Btn Link */
.btn-link {
	font-weight: 700;
	color: var(--gray-30);
	text-decoration: none;
}
.btn-link i,
.btn-link svg { color: var(--orange-40); }
.btn-link:hover,
.btn-link.active {
	color: var(--gray-20);
	background-color: var(--gray-90);
}
.btn-link:active { background-color: transparent; }
.btn-link.disabled,
.btn-link:disabled { color: var(--gray-80); }

/* Btn Link */
.btn-box {
	padding: 30px 20px;
	text-align: left;
	width: 250px;
	background: var(--white);
	border: 1px solid var(--orange-40);
}
.btn-box h6 {
	color: var(--orange-40);
	margin: 0 0 8px 0;
}
.btn-box p {
	color: var(--gray-60);
	margin: 0;
}
.btn-box.active,
.btn-box:hover {
	background-color: var(--orange-40);
	color: var(--white);
}
.btn-box.active *,
.btn-box:hover * {
	color: var(--white);
}

/* Btn Nav Menu */
.btn-nav {
  color: var(--gray-60);
  font-weight: 400;
}
.btn-nav.active {
  color: var(--black);
}
.btn-nav.active svg path {
  fill: var(--orange-40);
}

.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 .5rem 1rem rgba(0, 0, 0, .15)!important
}

.shadow-sm {
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important
}

.shadow-lg {
	box-shadow: 0 1rem 3rem rgba(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-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: .25rem!important
}

.gap-2 {
	gap: .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: .25rem!important
}

.m-2 {
	margin: .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: .25rem!important;
	margin-left: .25rem!important
}

.mx-2 {
	margin-right: .5rem!important;
	margin-left: .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: .25rem!important;
	margin-bottom: .25rem!important
}

.my-2 {
	margin-top: .5rem!important;
	margin-bottom: .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: .25rem!important
}

.mt-2 {
	margin-top: .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: .25rem!important
}

.me-2 {
	margin-right: .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: .25rem!important
}

.mb-2 {
	margin-bottom: .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: .25rem!important
}

.ms-2 {
	margin-left: .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: .25rem!important
}

.p-2 {
	padding: .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: .25rem!important;
	padding-left: .25rem!important
}

.px-2 {
	padding-right: .5rem!important;
	padding-left: .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: .25rem!important;
	padding-bottom: .25rem!important
}

.py-2 {
	padding-top: .5rem!important;
	padding-bottom: .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: .25rem!important
}

.pt-2 {
	padding-top: .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: .25rem!important
}

.pe-2 {
	padding-right: .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: .25rem!important
}

.pb-2 {
	padding-bottom: .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: .25rem!important
}

.ps-2 {
	padding-left: .5rem!important
}

.ps-3 {
	padding-left: 1rem!important
}

.ps-4 {
	padding-left: 1.5rem!important
}

.ps-5 {
	padding-left: 3rem!important
}

.font-monospace {
	font-family: var(--bs-font-monospace)!important
}

.fs-1 {
	font-size: calc(1.375rem + 1.5vw)!important
}

.fs-2 {
	font-size: calc(1.325rem + .9vw)!important
}

.fs-3 {
	font-size: calc(1.3rem + .6vw)!important
}

.fs-4 {
	font-size: calc(1.275rem + .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
}

.lh-1 {
	line-height: 1!important
}

.lh-sm {
	line-height: 1.25!important
}

.lh-base {
	line-height: 1.5!important
}

.lh-lg {
	line-height: 2!important
}

.text-start {
	text-align: left!important
}

.text-end {
	text-align: right!important
}

.text-center {
	text-align: center!important
}

.text-decoration-none {
	text-decoration: none!important
}

.text-decoration-underline {
	text-decoration: underline!important
}

.text-decoration-line-through {
	text-decoration: line-through!important
}

.text-lowercase {
	text-transform: lowercase!important
}

.text-uppercase {
	text-transform: uppercase!important
}

.text-capitalize {
	text-transform: capitalize!important
}

.text-wrap {
	white-space: normal!important
}

.text-nowrap {
	white-space: nowrap!important
}

.text-break {
	word-wrap: break-word!important;
	word-break: break-word!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, .5)!important
}

.text-white-50 {
	color: rgba(255, 255, 255, .5)!important
}

.text-reset {
	color: inherit!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
}

.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: .25rem!important
}

.rounded-0 {
	border-radius: 0!important
}

.rounded-1 {
	border-radius: .2rem!important
}

.rounded-2 {
	border-radius: .25rem!important
}

.rounded-3 {
	border-radius: .3rem!important
}

.rounded-circle {
	border-radius: 50%!important
}

.rounded-pill {
	border-radius: 50rem!important
}

.rounded-top {
	border-top-left-radius: .25rem!important;
	border-top-right-radius: .25rem!important
}

.rounded-end {
	border-top-right-radius: .25rem!important;
	border-bottom-right-radius: .25rem!important
}

.rounded-bottom {
	border-bottom-right-radius: .25rem!important;
	border-bottom-left-radius: .25rem!important
}

.rounded-start {
	border-bottom-left-radius: .25rem!important;
	border-top-left-radius: .25rem!important
}

.visible {
	visibility: visible!important
}

.invisible {
	visibility: hidden!important
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1060;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: .5rem;
	pointer-events: none
}

.modal.fade .modal-dialog {
	transition: transform .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, .2);
	border-radius: .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: .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(.3rem - 1px);
	border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .btn-close {
	padding: .5rem .5rem;
	margin: -.5rem -.5rem -.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: .75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(.3rem - 1px);
	border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
	margin: .25rem
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	width: 100%;
	padding-right: var(--bs-gutter-x, .75rem);
	padding-left: var(--bs-gutter-x, .75rem);
	margin-right: auto;
	margin-left: auto
}

@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
	}
}