/*** 
  CREATED BY adroitlight.com
====================================================================
  Table of contents
====================================================================

- Google Fonts and webfonts
- Import all CSS
- General CSS Styles

====================================================================
  Google fonts
====================================================================

***/
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,900");
@import url("https://fonts.googleapis.com/css?family=Tajawal:200,300,400,500,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
/*** 

====================================================================
  Web fonts
====================================================================

***/
@import url(../css/webfonts/style.css);
/*** 

====================================================================
  Import All Css
====================================================================

***/

@import "bootstrap.min.css";
@import "fontawesome/fontawesome-all.css";

/*** 
/*** 

====================================================================
  General css style
====================================================================

***/
@import url(../css/webfonts/style.css);
/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

:root {
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #28a745;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #00c9fd;
	--secondary: #ff4081;
	--success: #52c41a;
	--info: #1890ff;
	--warning: #fa8c16;
	--danger: #d32c1f;
	--light: #e5e5e5;
	--dark: #212121;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
	--font-family-sans-serif: "NoirPro", sans-serif;
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
		"Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

body {
	margin: 0;
	font-family: "Lato", "NoirPro", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.4;
	color: #757575;
	text-align: left;
	background-color: rgb(239, 241, 244);
}

@media print {

	.no-print,
	.no-print * {
		display: none !important;
	}
}

input[type="file"],
input[type="radio"],
::-webkit-file-upload-button {
	cursor: pointer !important;
}

[tabindex="-1"]:focus {
	outline: 0 !important;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 1.8rem;
}

p {
	margin-top: 0;
	margin-bottom: 1.4rem;
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	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 {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

a {
	color: var(--primary);
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	color: var(--primary);
	text-decoration: none;
}

a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

pre,
code,
kbd,
samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
		"Courier New", monospace;
	font-size: 1em;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
}

figure {
	margin: 0 0 1rem;
}

img {
	vertical-align: middle;
	border-style: none;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
	border-radius: 0;
}

button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
	cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
	-webkit-appearance: listbox;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}

[hidden] {
	display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 1.8rem;
	font-weight: 400;
	line-height: 1.2;
	color: #212121;
}

h1,
.h1 {
	font-size: 2.2rem;
}

h2,
.h2 {
	font-size: 2rem;
}

h3,
.h3 {
	font-size: 1.8rem;
}

h4,
.h4 {
	font-size: 1.6rem;
}

h5,
.h5 {
	font-size: 1.4rem;
}

h6,
.h6 {
	font-size: 1.2rem;
}

.lead {
	font-size: 2rem;
	font-weight: 200;
}

.display-1 {
	font-size: 4rem;
	font-weight: 400;
	line-height: 1.2;
}

.display-2 {
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 1.2;
}

.display-3 {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
}

.display-4 {
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.2;
}

hr {
	margin-top: 1.6rem;
	margin-bottom: 1.6rem;
	border: 0;
	border-top: 1px solid #ced4da;
}

small,
.small {
	font-size: 80%;
	font-weight: 400;
}

mark,
.mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.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: 90%;
	text-transform: uppercase;
}

.blockquote {
	margin-bottom: 1.6rem;
	font-size: 1.8rem;
}

.blockquote-footer {
	display: block;
	font-size: 80%;
	color: #757575;
}

.blockquote-footer::before {
	content: "\2014\00A0";
}

.add-delete-icon {
	position: absolute;
	right: -15px;
	margin-top: -35px;
	width: 25px;
}

.inputTxtError {
	border-color: red !important;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.img-thumbnail {
	padding: 0.25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
	max-width: 100%;
	height: auto;
}

.figure {
	display: inline-block;
}

.figure-img {
	margin-bottom: 0.8rem;
	line-height: 1;
}

.figure-caption {
	font-size: 90%;
	color: #6c757d;
}

code {
	font-size: 87.5%;
	color: #e83e8c;
	word-break: break-word;
}

a>code {
	color: inherit;
}

kbd {
	padding: 0.2rem 0.4rem;
	font-size: 87.5%;
	color: #fff;
	background-color: #212529;
	border-radius: 0.2rem;
	box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: 700;
	box-shadow: none;
}

pre {
	display: block;
	font-size: 87.5%;
	color: #212529;
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}

.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll;
}

.container {
	width: 100%;
	padding-right: 1.6rem;
	padding-left: 1.6rem;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

.container-fluid {
	width: 100%;
	padding-right: 1.6rem;
	padding-left: 1.6rem;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -1.6rem;
	margin-left: -1.6rem;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
	position: relative;
	width: 100%;
	padding-right: 1.6rem;
	padding-left: 1.6rem;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.col-1 {
	-ms-flex: 0 0 8.3333333333%;
	flex: 0 0 8.3333333333%;
	max-width: 8.3333333333%;
}

.col-2 {
	-ms-flex: 0 0 16.6666666667%;
	flex: 0 0 16.6666666667%;
	max-width: 16.6666666667%;
}

.col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	-ms-flex: 0 0 33.3333333333%;
	flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%;
}

.col-5 {
	-ms-flex: 0 0 41.6666666667%;
	flex: 0 0 41.6666666667%;
	max-width: 41.6666666667%;
}

.col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	-ms-flex: 0 0 58.3333333333%;
	flex: 0 0 58.3333333333%;
	max-width: 58.3333333333%;
}

.col-8 {
	-ms-flex: 0 0 66.6666666667%;
	flex: 0 0 66.6666666667%;
	max-width: 66.6666666667%;
}

.col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	-ms-flex: 0 0 83.3333333333%;
	flex: 0 0 83.3333333333%;
	max-width: 83.3333333333%;
}

.col-11 {
	-ms-flex: 0 0 91.6666666667%;
	flex: 0 0 91.6666666667%;
	max-width: 91.6666666667%;
}

.col-12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.order-first {
	-ms-flex-order: -1;
	order: -1;
}

.order-last {
	-ms-flex-order: 13;
	order: 13;
}

.order-0 {
	-ms-flex-order: 0;
	order: 0;
}

.order-1 {
	-ms-flex-order: 1;
	order: 1;
}

.order-2 {
	-ms-flex-order: 2;
	order: 2;
}

.order-3 {
	-ms-flex-order: 3;
	order: 3;
}

.order-4 {
	-ms-flex-order: 4;
	order: 4;
}

.order-5 {
	-ms-flex-order: 5;
	order: 5;
}

.order-6 {
	-ms-flex-order: 6;
	order: 6;
}

.order-7 {
	-ms-flex-order: 7;
	order: 7;
}

.order-8 {
	-ms-flex-order: 8;
	order: 8;
}

.order-9 {
	-ms-flex-order: 9;
	order: 9;
}

.order-10 {
	-ms-flex-order: 10;
	order: 10;
}

.order-11 {
	-ms-flex-order: 11;
	order: 11;
}

.order-12 {
	-ms-flex-order: 12;
	order: 12;
}

.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%;
}

@media (min-width: 576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-sm-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-sm-1 {
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.col-sm-2 {
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.col-sm-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-sm-4 {
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.col-sm-5 {
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.col-sm-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-sm-7 {
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.col-sm-8 {
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.col-sm-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-sm-10 {
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.col-sm-11 {
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.col-sm-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-sm-first {
		-ms-flex-order: -1;
		order: -1;
	}

	.order-sm-last {
		-ms-flex-order: 13;
		order: 13;
	}

	.order-sm-0 {
		-ms-flex-order: 0;
		order: 0;
	}

	.order-sm-1 {
		-ms-flex-order: 1;
		order: 1;
	}

	.order-sm-2 {
		-ms-flex-order: 2;
		order: 2;
	}

	.order-sm-3 {
		-ms-flex-order: 3;
		order: 3;
	}

	.order-sm-4 {
		-ms-flex-order: 4;
		order: 4;
	}

	.order-sm-5 {
		-ms-flex-order: 5;
		order: 5;
	}

	.order-sm-6 {
		-ms-flex-order: 6;
		order: 6;
	}

	.order-sm-7 {
		-ms-flex-order: 7;
		order: 7;
	}

	.order-sm-8 {
		-ms-flex-order: 8;
		order: 8;
	}

	.order-sm-9 {
		-ms-flex-order: 9;
		order: 9;
	}

	.order-sm-10 {
		-ms-flex-order: 10;
		order: 10;
	}

	.order-sm-11 {
		-ms-flex-order: 11;
		order: 11;
	}

	.order-sm-12 {
		-ms-flex-order: 12;
		order: 12;
	}

	.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%;
	}
}

@media (min-width: 768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-md-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-md-1 {
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.col-md-2 {
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.col-md-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.col-md-5 {
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.col-md-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-7 {
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.col-md-8 {
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.col-md-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-md-10 {
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.col-md-11 {
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.col-md-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-md-first {
		-ms-flex-order: -1;
		order: -1;
	}

	.order-md-last {
		-ms-flex-order: 13;
		order: 13;
	}

	.order-md-0 {
		-ms-flex-order: 0;
		order: 0;
	}

	.order-md-1 {
		-ms-flex-order: 1;
		order: 1;
	}

	.order-md-2 {
		-ms-flex-order: 2;
		order: 2;
	}

	.order-md-3 {
		-ms-flex-order: 3;
		order: 3;
	}

	.order-md-4 {
		-ms-flex-order: 4;
		order: 4;
	}

	.order-md-5 {
		-ms-flex-order: 5;
		order: 5;
	}

	.order-md-6 {
		-ms-flex-order: 6;
		order: 6;
	}

	.order-md-7 {
		-ms-flex-order: 7;
		order: 7;
	}

	.order-md-8 {
		-ms-flex-order: 8;
		order: 8;
	}

	.order-md-9 {
		-ms-flex-order: 9;
		order: 9;
	}

	.order-md-10 {
		-ms-flex-order: 10;
		order: 10;
	}

	.order-md-11 {
		-ms-flex-order: 11;
		order: 11;
	}

	.order-md-12 {
		-ms-flex-order: 12;
		order: 12;
	}

	.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%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-lg-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-lg-1 {
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.col-lg-2 {
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.col-lg-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-lg-4 {
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.col-lg-5 {
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.col-lg-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-lg-7 {
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.col-lg-8 {
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.col-lg-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-lg-10 {
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.col-lg-11 {
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.col-lg-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-lg-first {
		-ms-flex-order: -1;
		order: -1;
	}

	.order-lg-last {
		-ms-flex-order: 13;
		order: 13;
	}

	.order-lg-0 {
		-ms-flex-order: 0;
		order: 0;
	}

	.order-lg-1 {
		-ms-flex-order: 1;
		order: 1;
	}

	.order-lg-2 {
		-ms-flex-order: 2;
		order: 2;
	}

	.order-lg-3 {
		-ms-flex-order: 3;
		order: 3;
	}

	.order-lg-4 {
		-ms-flex-order: 4;
		order: 4;
	}

	.order-lg-5 {
		-ms-flex-order: 5;
		order: 5;
	}

	.order-lg-6 {
		-ms-flex-order: 6;
		order: 6;
	}

	.order-lg-7 {
		-ms-flex-order: 7;
		order: 7;
	}

	.order-lg-8 {
		-ms-flex-order: 8;
		order: 8;
	}

	.order-lg-9 {
		-ms-flex-order: 9;
		order: 9;
	}

	.order-lg-10 {
		-ms-flex-order: 10;
		order: 10;
	}

	.order-lg-11 {
		-ms-flex-order: 11;
		order: 11;
	}

	.order-lg-12 {
		-ms-flex-order: 12;
		order: 12;
	}

	.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%;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-xl-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-xl-1 {
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.col-xl-2 {
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.col-xl-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-xl-4 {
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.col-xl-5 {
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.col-xl-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-xl-7 {
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.col-xl-8 {
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.col-xl-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-xl-10 {
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.col-xl-11 {
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.col-xl-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-xl-first {
		-ms-flex-order: -1;
		order: -1;
	}

	.order-xl-last {
		-ms-flex-order: 13;
		order: 13;
	}

	.order-xl-0 {
		-ms-flex-order: 0;
		order: 0;
	}

	.order-xl-1 {
		-ms-flex-order: 1;
		order: 1;
	}

	.order-xl-2 {
		-ms-flex-order: 2;
		order: 2;
	}

	.order-xl-3 {
		-ms-flex-order: 3;
		order: 3;
	}

	.order-xl-4 {
		-ms-flex-order: 4;
		order: 4;
	}

	.order-xl-5 {
		-ms-flex-order: 5;
		order: 5;
	}

	.order-xl-6 {
		-ms-flex-order: 6;
		order: 6;
	}

	.order-xl-7 {
		-ms-flex-order: 7;
		order: 7;
	}

	.order-xl-8 {
		-ms-flex-order: 8;
		order: 8;
	}

	.order-xl-9 {
		-ms-flex-order: 9;
		order: 9;
	}

	.order-xl-10 {
		-ms-flex-order: 10;
		order: 10;
	}

	.order-xl-11 {
		-ms-flex-order: 11;
		order: 11;
	}

	.order-xl-12 {
		-ms-flex-order: 12;
		order: 12;
	}

	.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%;
	}
}

.table {
	width: 100%;
	margin-bottom: 1.6rem;
	color: #757575;
}

.table th,
.table td {
	padding: 1.5rem;
	vertical-align: top;
	border-top: 1px solid #ddd;
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #ddd;
}

.table tbody+tbody {
	border-top: 2px solid #ddd;
}

.table-sm th,
.table-sm td {
	padding: 0.5rem;
}

.table-bordered {
	border: 1px solid #ddd;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #ddd;
}

.table-bordered thead th,
.table-bordered thead td {
	border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody+tbody {
	border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: #f8f8f8;
}

.table-hover tbody tr:hover {
	color: #757575;
	background-color: #f3f3f3;
}

.table-primary,
.table-primary>th,
.table-primary>td {
	background-color: #cec4e7;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody+tbody {
	border-color: #a592d2;
}

.table-hover .table-primary:hover {
	background-color: #bfb2e0;
}

.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
	background-color: #bfb2e0;
}

.table-secondary,
.table-secondary>th,
.table-secondary>td {
	background-color: #ffcadc;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody+tbody {
	border-color: #ff9cbd;
}

.table-hover .table-secondary:hover {
	background-color: #ffb1cb;
}

.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
	background-color: #ffb1cb;
}

.table-success,
.table-success>th,
.table-success>td {
	background-color: #cfeebf;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody+tbody {
	border-color: #a5e088;
}

.table-hover .table-success:hover {
	background-color: #c0e9ab;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
	background-color: #c0e9ab;
}

.table-info,
.table-info>th,
.table-info>td {
	background-color: #bee0ff;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody+tbody {
	border-color: #87c5ff;
}

.table-hover .table-info:hover {
	background-color: #a5d4ff;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
	background-color: #a5d4ff;
}

.table-warning,
.table-warning>th,
.table-warning>td {
	background-color: #fedfbe;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody+tbody {
	border-color: #fcc386;
}

.table-hover .table-warning:hover {
	background-color: #fed3a5;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
	background-color: #fed3a5;
}

.table-danger,
.table-danger>th,
.table-danger>td {
	background-color: #fccac7;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody+tbody {
	border-color: #f99d96;
}

.table-hover .table-danger:hover {
	background-color: #fbb3af;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
	background-color: #fbb3af;
}

.table-light,
.table-light>th,
.table-light>td {
	background-color: #f8f8f8;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody+tbody {
	border-color: #f1f1f1;
}

.table-hover .table-light:hover {
	background-color: #ebebeb;
}

.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
	background-color: #ebebeb;
}

.table-dark,
.table-dark>th,
.table-dark>td {
	background-color: #c1c1c1;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody+tbody {
	border-color: #8c8c8c;
}

.table-hover .table-dark:hover {
	background-color: #b4b4b4;
}

.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
	background-color: #b4b4b4;
}

.table-active,
.table-active>th,
.table-active>td {
	background-color: #f3f3f3;
}

.table-hover .table-active:hover {
	background-color: #e6e6e6;
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
	background-color: #e6e6e6;
}

.table .thead-dark th {
	color: #c5c5c5;
	background-color: #3c3c3c;
	border-color: #414141;
}

.table .thead-light th {
	color: #fff;
	background-color: #e9e9e9;
	border-color: #ddd;
}

.table-dark {
	color: #c5c5c5;
	background-color: #3c3c3c;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
	border-color: #414141;
}

.table-dark.table-bordered {
	border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
	background-color: #292929;
}

.table-dark.table-hover tbody tr:hover {
	color: #c5c5c5;
	background-color: #242424;
}

@media (max-width: 575.98px) {
	.table-responsive-sm {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.table-responsive-sm>.table-bordered {
		border: 0;
	}
}

@media (max-width: 767.98px) {
	.table-responsive-md {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.table-responsive-md>.table-bordered {
		border: 0;
	}
}

@media (max-width: 991.98px) {
	.table-responsive-lg {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.table-responsive-lg>.table-bordered {
		border: 0;
	}
}

@media (max-width: 1199.98px) {
	.table-responsive-xl {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.table-responsive-xl>.table-bordered {
		border: 0;
	}
}

.table-responsive>.table-bordered {
	border: 0;
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.4em + 2.12rem + 2px) !important;
	padding: 1.06rem 1.7rem;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.4;
	color: #757575;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	/* border-radius: .4rem; */
	border-radius: 25px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	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::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #9679db;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 0 0 rgba(81, 45, 168, 0.25);
}

.form-control::-webkit-input-placeholder {
	color: #bdbdbd;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #bdbdbd;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #bdbdbd;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #bdbdbd;
	opacity: 1;
}

.form-control::placeholder {
	color: #bdbdbd;
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

select.form-control:focus::-ms-value {
	color: #757575;
	background-color: #fff;
}

.form-control-file,
.form-control-range {
	display: block;
	width: 100%;
}

.col-form-label {
	padding-top: calc(1.06rem + 1px);
	padding-bottom: calc(1.06rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.4;
}

.col-form-label-lg {
	padding-top: calc(1.24rem + 1px);
	padding-bottom: calc(1.24rem + 1px);
	font-size: 1.6rem;
	line-height: 1.4;
}

.col-form-label-sm {
	padding-top: calc(0.88rem + 1px);
	padding-bottom: calc(0.88rem + 1px);
	font-size: 1.2rem;
	line-height: 1.4;
}

.form-control-plaintext {
	display: block;
	width: 100%;
	padding-top: 1.06rem;
	padding-bottom: 1.06rem;
	margin-bottom: 0;
	line-height: 1.4;
	color: #212529;
	background-color: transparent;
	border: solid transparent;
	border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
	padding-right: 0;
	padding-left: 0;
}

.form-control-sm {
	height: calc(1.4em + 1.76rem + 2px);
	padding: 0.88rem 1.3rem;
	font-size: 1.2rem;
	line-height: 1.4;
	border-radius: 0.4rem;
}

.form-control-lg {
	height: calc(1.4em + 2.48rem + 2px);
	padding: 1.24rem 1.7rem;
	font-size: 1.6rem;
	line-height: 1.4;
	border-radius: 0.6rem;
}

select.form-control[size],
select.form-control[multiple] {
	height: auto;
}

textarea.form-control {
	height: auto !important;
}

.form-group {
	margin-bottom: 1.8rem;
}

.form-text {
	display: block;
	margin-top: 0.8rem;
	word-break: break-all;
}

.form-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}

.form-row>.col,
.form-row>[class*="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}

.form-check {
	position: relative;
	display: block;
	padding-left: 2rem;
}

.form-check-input {
	position: absolute;
	margin-top: 0.5rem;
	margin-left: -2rem;
}

.form-check-input:disabled~.form-check-label {
	color: #757575;
}

.form-check-label {
	margin-bottom: 0;
}

.form-check-inline {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 0;
	margin-right: 1.2rem;
}

.form-check-inline .form-check-input {
	position: static;
	margin-top: 0;
	margin-right: 0.6rem;
	margin-left: 0;
}

.valid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.8rem;
	font-size: 80%;
	color: #52c41a;
}

.valid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: 0.4rem 0.8rem;
	margin-top: 0.1rem;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #fff;
	background-color: rgba(82, 196, 26, 0.9);
	border-radius: 0.4rem;
}

.was-validated .form-control:valid,
.form-control.is-valid {
	border-color: #52c41a;
	padding-right: calc(1.4em + 2.12rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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: center right calc(0.35em + 0.53rem);
	background-size: calc(0.7em + 1.06rem) calc(0.7em + 1.06rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
	border-color: #52c41a;
	box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.25);
}

.was-validated .form-control:valid~.valid-feedback,
.was-validated .form-control:valid~.valid-tooltip,
.form-control.is-valid~.valid-feedback,
.form-control.is-valid~.valid-tooltip {
	display: block;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
	padding-right: calc(1.4em + 2.12rem);
	background-position: top calc(0.35em + 0.53rem) right calc(0.35em + 0.53rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
	border-color: #52c41a;
	padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.7rem center/8px 10px,
		url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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") #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
	border-color: #52c41a;
	box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.25);
}

.was-validated .custom-select:valid~.valid-feedback,
.was-validated .custom-select:valid~.valid-tooltip,
.custom-select.is-valid~.valid-feedback,
.custom-select.is-valid~.valid-tooltip {
	display: block;
}

.was-validated .form-control-file:valid~.valid-feedback,
.was-validated .form-control-file:valid~.valid-tooltip,
.form-control-file.is-valid~.valid-feedback,
.form-control-file.is-valid~.valid-tooltip {
	display: block;
}

.was-validated .form-check-input:valid~.form-check-label,
.form-check-input.is-valid~.form-check-label {
	color: #52c41a;
}

.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip,
.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip {
	display: block;
}

.was-validated .custom-control-input:valid~.custom-control-label,
.custom-control-input.is-valid~.custom-control-label {
	color: #52c41a;
}

.was-validated .custom-control-input:valid~.custom-control-label::before,
.custom-control-input.is-valid~.custom-control-label::before {
	border-color: #52c41a;
}

.was-validated .custom-control-input:valid~.valid-feedback,
.was-validated .custom-control-input:valid~.valid-tooltip,
.custom-control-input.is-valid~.valid-feedback,
.custom-control-input.is-valid~.valid-tooltip {
	display: block;
}

.was-validated .custom-control-input:valid:checked~.custom-control-label::before,
.custom-control-input.is-valid:checked~.custom-control-label::before {
	border-color: #6ae32e;
	background-color: #6ae32e;
}

.was-validated .custom-control-input:valid:focus~.custom-control-label::before,
.custom-control-input.is-valid:focus~.custom-control-label::before {
	box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before {
	border-color: #52c41a;
}

.was-validated .custom-file-input:valid~.custom-file-label,
.custom-file-input.is-valid~.custom-file-label {
	border-color: #52c41a;
}

.was-validated .custom-file-input:valid~.valid-feedback,
.was-validated .custom-file-input:valid~.valid-tooltip,
.custom-file-input.is-valid~.valid-feedback,
.custom-file-input.is-valid~.valid-tooltip {
	display: block;
}

.was-validated .custom-file-input:valid:focus~.custom-file-label,
.custom-file-input.is-valid:focus~.custom-file-label {
	border-color: #52c41a;
	box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.25);
}

.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.8rem;
	font-size: 80%;
	color: #d32c1f;
}

.invalid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: 0.4rem 0.8rem;
	margin-top: 0.1rem;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #fff;
	background-color: rgba(244, 67, 54, 0.9);
	border-radius: 0.4rem;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
	border-color: #d32c1f;
	padding-right: calc(1.4em + 2.12rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
	background-repeat: no-repeat;
	background-position: center right calc(0.35em + 0.53rem);
	background-size: calc(0.7em + 1.06rem) calc(0.7em + 1.06rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
	border-color: #d32c1f;
	box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.25);
}

.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip,
.form-control.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-tooltip {
	display: block;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
	padding-right: calc(1.4em + 2.12rem);
	background-position: top calc(0.35em + 0.53rem) right calc(0.35em + 0.53rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
	border-color: #d32c1f;
	padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.7rem center/8px 10px,
		url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
	border-color: #d32c1f;
	box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.25);
}

.was-validated .custom-select:invalid~.invalid-feedback,
.was-validated .custom-select:invalid~.invalid-tooltip,
.custom-select.is-invalid~.invalid-feedback,
.custom-select.is-invalid~.invalid-tooltip {
	display: block;
}

.was-validated .form-control-file:invalid~.invalid-feedback,
.was-validated .form-control-file:invalid~.invalid-tooltip,
.form-control-file.is-invalid~.invalid-feedback,
.form-control-file.is-invalid~.invalid-tooltip {
	display: block;
}

.was-validated .form-check-input:invalid~.form-check-label,
.form-check-input.is-invalid~.form-check-label {
	color: #d32c1f;
}

.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip,
.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip {
	display: block;
}

.was-validated .custom-control-input:invalid~.custom-control-label,
.custom-control-input.is-invalid~.custom-control-label {
	color: #d32c1f;
}

.was-validated .custom-control-input:invalid~.custom-control-label::before,
.custom-control-input.is-invalid~.custom-control-label::before {
	border-color: #d32c1f;
}

.was-validated .custom-control-input:invalid~.invalid-feedback,
.was-validated .custom-control-input:invalid~.invalid-tooltip,
.custom-control-input.is-invalid~.invalid-feedback,
.custom-control-input.is-invalid~.invalid-tooltip {
	display: block;
}

.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,
.custom-control-input.is-invalid:checked~.custom-control-label::before {
	border-color: #f77066;
	background-color: #f77066;
}

.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,
.custom-control-input.is-invalid:focus~.custom-control-label::before {
	box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before {
	border-color: #d32c1f;
}

.was-validated .custom-file-input:invalid~.custom-file-label,
.custom-file-input.is-invalid~.custom-file-label {
	border-color: #d32c1f;
}

.was-validated .custom-file-input:invalid~.invalid-feedback,
.was-validated .custom-file-input:invalid~.invalid-tooltip,
.custom-file-input.is-invalid~.invalid-feedback,
.custom-file-input.is-invalid~.invalid-tooltip {
	display: block;
}

.was-validated .custom-file-input:invalid:focus~.custom-file-label,
.custom-file-input.is-invalid:focus~.custom-file-label {
	border-color: #d32c1f;
	box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.25);
}

.form-inline {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-ms-flex-align: center;
	align-items: center;
}

.form-inline .form-check {
	width: 100%;
}

@media (min-width: 576px) {
	.form-inline label {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-bottom: 0;
	}

	.form-inline .form-group {
		display: -ms-flexbox;
		display: flex;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 0;
	}

	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle;
	}

	.form-inline .form-control-plaintext {
		display: inline-block;
	}

	.form-inline .input-group,
	.form-inline .custom-select {
		width: auto;
	}

	.form-inline .form-check {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: auto;
		padding-left: 0;
	}

	.form-inline .form-check-input {
		position: relative;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		margin-top: 0;
		margin-right: 0.4rem;
		margin-left: 0;
	}

	.form-inline .custom-control {
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.form-inline .custom-control-label {
		margin-bottom: 0;
	}
}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #757575;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 1.06rem 1.7rem;
	font-size: 1.4rem;
	line-height: 1.4;
	border-radius: 0.4rem;
	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: #757575;
	text-decoration: none;
}

.btn:focus,
.btn.focus {
	outline: 0;
	box-shadow: 0 0 0 0 rgba(81, 45, 168, 0.25);
}

.btn.disabled,
.btn:disabled {
	opacity: 0.65;
	box-shadow: none;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus {
	box-shadow: 0 0 0 0 rgba(81, 45, 168, 0.25),
		inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

a.btn.disabled,
fieldset:disabled a.btn {
	pointer-events: none;
}

.clr-red {
	color: #fff;
	background-color: #f37171;
	border-color: #f37171;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 5px;
}

.clr-red:hover {
	color: #fff;
	background-color: #e65a5a;
	border-color: #e65a5a;
}

.clr-green {
	color: #fff;
	background-color: #6ed36a;
	border-color: #6ed36a;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 5px;
}

.clr-green:hover {
	color: #fff;
	background-color: #4bbb47;
	border-color: #4bbb47;
}

.clr-cancel {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 5px;
}

.clr-cancel:hover {
	color: #fff;
	background-color: #1bb1d7;
	border-color: #1bb1d7;
}

.btn-primary {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-primary:hover {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:focus,
.btn-primary.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(107, 77, 181, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--primary);
	border-color: #392076;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(107, 77, 181, 0.5);
}

.btn-secondary {
	color: #fff;
	background-color: #ff4081;
	border-color: #ff4081;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-secondary:hover {
	color: #fff;
	background-color: #ff1a68;
	border-color: #ff0d5f;
}

.btn-secondary:focus,
.btn-secondary.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(255, 93, 148, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
	color: #fff;
	background-color: #ff4081;
	border-color: #ff4081;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #ff0d5f;
	border-color: #ff0057;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(255, 93, 148, 0.5);
}

.btn-success {
	color: #fff;
	background-color: #52c41a;
	border-color: #52c41a;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-success:hover {
	color: #fff;
	background-color: #44a216;
	border-color: #3f9714;
}

.btn-success:focus,
.btn-success.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(108, 205, 60, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
	color: #fff;
	background-color: #52c41a;
	border-color: #52c41a;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show>.btn-success.dropdown-toggle {
	color: #fff;
	background-color: #3f9714;
	border-color: #3a8c13;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-success.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(108, 205, 60, 0.5);
}

.text-white {
	color: white !important;
}

.border-100 {
	border-radius: 100px;
}

.btn-info {
	color: white;
	/* background: linear-gradient(to right top, #000000, #090909, #131313, #1A1A1A, #202020)!important; */
	background-color: var(--primary) !important;
	border: white;
	border-radius: 100px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-info:hover {
	color: #fff;
	background-color: #007df1;
	border-color: #0076e4;
}

.btn-info:focus,
.btn-info.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(59, 161, 255, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
	color: #fff;
	background-color: #1890ff;
	border-color: #1890ff;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show>.btn-info.dropdown-toggle {
	color: #fff;
	background: linear-gradient(to right top,
			#000000,
			#090909,
			#131313,
			#1a1a1a,
			#202020) !important;
	border-color: white;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-info.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(59, 161, 255, 0.5);
}

.btn-warning {
	color: #212529;
	background-color: #fa8c16;
	border-color: #fa8c16;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-warning:hover {
	color: #fff;
	background-color: #e57905;
	border-color: #d87205;
}

.btn-warning:focus,
.btn-warning.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(217, 125, 25, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
	color: #212529;
	background-color: #fa8c16;
	border-color: #fa8c16;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show>.btn-warning.dropdown-toggle {
	color: #fff;
	background-color: #d87205;
	border-color: #cc6c04;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-warning.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(217, 125, 25, 0.5);
}

.btn-danger {
	color: #d32c1f !important;
	/* background-color: #D32C1F; */
	border: 2px solid #d32c1f;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-danger:hover {
	color: #fff;
	background-color: #d32c1f !important;
	border-color: #d32c1f !important;
	box-shadow: none !important;
}

.btn-danger:focus,
.btn-danger.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(246, 95, 84, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
	color: #fff;
	background-color: #d32c1f;
	border-color: #d32c1f;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show>.btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #ea1c0d;
	border-color: #de1b0c;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-danger.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(246, 95, 84, 0.5);
}

.btn-light {
	color: white;
	background-color: transparent;
	border: 2px solid white;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-light:hover {
	color: #212529;
	background-color: #d2d2d2;
	border-color: #ccc;
}

.btn-light:focus,
.btn-light.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(200, 200, 201, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
	color: #212529;
	background-color: #e5e5e5;
	border-color: #e5e5e5;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show>.btn-light.dropdown-toggle {
	color: #212529;
	background-color: #ccc;
	border-color: #c5c5c5;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-light.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(200, 200, 201, 0.5);
}

.btn-dark {
	color: #fff;
	background-color: #212121;
	border-color: #212121;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-dark:hover {
	color: #fff;
	background-color: #0e0e0e;
	border-color: #080808;
}

.btn-dark:focus,
.btn-dark.focus {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(66, 66, 66, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
	color: #fff;
	background-color: #212121;
	border-color: #212121;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show>.btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #080808;
	border-color: #010101;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(66, 66, 66, 0.5);
}

.btn-outline-primary {
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
	box-shadow: 0 0 0 0 rgba(81, 45, 168, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: var(--primary);
	background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(81, 45, 168, 0.5);
}

.btn-outline-secondary {
	color: #ff4081;
	border-color: #ff4081;
}

.btn-outline-secondary:hover {
	color: #fff;
	background-color: #ff4081;
	border-color: #ff4081;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
	box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
	color: #ff4081;
	background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.btn-outline-secondary.dropdown-toggle {
	color: #fff;
	background-color: #ff4081;
	border-color: #ff4081;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(255, 64, 129, 0.5);
}

.btn-outline-success {
	color: #52c41a;
	border-color: #52c41a;
}

.btn-outline-success:hover {
	color: #fff;
	background-color: #52c41a;
	border-color: #52c41a;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
	box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
	color: #52c41a;
	background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show>.btn-outline-success.dropdown-toggle {
	color: #fff;
	background-color: #52c41a;
	border-color: #52c41a;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(82, 196, 26, 0.5);
}

.btn-outline-info {
	color: #1890ff;
	border-color: #1890ff;
}

.btn-outline-info:hover {
	color: #fff;
	background-color: #1890ff;
	border-color: #1890ff;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
	box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
	color: #1890ff;
	background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show>.btn-outline-info.dropdown-toggle {
	color: #fff;
	background-color: #1890ff;
	border-color: #1890ff;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(24, 144, 255, 0.5);
}

.btn-outline-warning {
	color: #fa8c16;
	border-color: #fa8c16;
}

.btn-outline-warning:hover {
	color: #212529;
	background-color: #fa8c16;
	border-color: #fa8c16;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
	box-shadow: 0 0 0 0 rgba(250, 140, 22, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
	color: #fa8c16;
	background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show>.btn-outline-warning.dropdown-toggle {
	color: #212529;
	background-color: #fa8c16;
	border-color: #fa8c16;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(250, 140, 22, 0.5);
}

.btn-outline-danger {
	color: #d32c1f;
	border-color: #d32c1f;
}

.btn-outline-danger:hover {
	color: #fff;
	background-color: #d32c1f;
	border-color: #d32c1f;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
	box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
	color: #d32c1f;
	background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show>.btn-outline-danger.dropdown-toggle {
	color: #fff;
	background-color: #d32c1f;
	border-color: #d32c1f;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(244, 67, 54, 0.5);
}

.btn-outline-light {
	color: #e5e5e5;
	border-color: #e5e5e5;
	border-radius: 0px !important;
}

.btn-outline-light:hover {
	color: #212529;
	background-color: #e5e5e5;
	border-color: #e5e5e5;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
	box-shadow: 0 0 0 0 rgba(229, 229, 229, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
	color: #e5e5e5;
	background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show>.btn-outline-light.dropdown-toggle {
	color: #212529;
	background-color: #e5e5e5;
	border-color: #e5e5e5;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(229, 229, 229, 0.5);
}

.btn-outline-dark {
	color: #212121;
	border-color: #212121;
}

.btn-outline-dark:hover {
	color: #fff;
	background-color: #212121;
	border-color: #212121;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
	box-shadow: 0 0 0 0 rgba(33, 33, 33, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
	color: #212121;
	background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
	color: #fff;
	background-color: #212121;
	border-color: #212121;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
		0 0 0 0 rgba(33, 33, 33, 0.5);
}

.btn-link {
	font-weight: 400;
	color: var(--primary);
	text-decoration: none;
}

.btn-link:hover {
	color: var(--primary);
	text-decoration: none;
}

.btn-link:focus,
.btn-link.focus {
	text-decoration: none;
	box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
	color: #6c757d;
	pointer-events: none;
}

.btn-lg,
.btn-group-lg>.btn {
	padding: 1.24rem 1.7rem;
	font-size: 1.6rem;
	line-height: 1.4;
	border-radius: 0.6rem;
}

.btn-sm,
.btn-group-sm>.btn {
	padding: 0.88rem 1.3rem;
	font-size: 1.3rem;
	line-height: 1.4;
	border-radius: 0.4rem;
}

.btn-block {
	display: block;
	width: 100%;
	background: white;
}

.btn-block+.btn-block {
	margin-top: 0.8rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
	width: 100%;
}

.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 {
	position: relative;
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
	.collapsing {
		transition: none;
	}
}

.dropup,
.dropright,
.dropdown,
.dropleft {
	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%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 16rem;
	padding: 16px 0 8px 0;
	margin: 0.5rem 0 0;
	font-size: 1.4rem;
	color: #757575;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 0 solid transparent;
	box-shadow: 0px 6px 6px #00000014;
	border-radius: 6px;
}

.dropdown-menu-left {
	right: auto;
	left: 0;
}

.dropdown-menu-right {
	right: 0;
	left: auto;
}

@media (min-width: 576px) {
	.dropdown-menu-sm-left {
		right: auto;
		left: 0;
	}

	.dropdown-menu-sm-right {
		right: 0;
		left: auto;
	}
}

@media (min-width: 768px) {
	.dropdown-menu-md-left {
		right: auto;
		left: 0;
	}

	.dropdown-menu-md-right {
		right: 0;
		left: auto;
	}
}

@media (min-width: 992px) {
	.dropdown-menu-lg-left {
		right: auto;
		left: 0;
	}

	.dropdown-menu-lg-right {
		right: 0;
		left: auto;
	}
}

@media (min-width: 1200px) {
	.dropdown-menu-xl-left {
		right: auto;
		left: 0;
	}

	.dropdown-menu-xl-right {
		right: 0;
		left: auto;
	}
}

.dropup .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.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;
}

.dropright .dropdown-menu {
	top: 0;
	right: auto;
	left: 100%;
	margin-top: 0;
	margin-left: 0.5rem;
}

.dropright .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;
}

.dropright .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropright .dropdown-toggle::after {
	vertical-align: 0;
}

.dropleft .dropdown-menu {
	top: 0;
	right: 100%;
	left: auto;
	margin-top: 0;
	margin-right: 0.5rem;
}

.dropleft .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}

.dropleft .dropdown-toggle::after {
	display: none;
}

.dropleft .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;
}

.dropleft .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropleft .dropdown-toggle::before {
	vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
	right: auto;
	bottom: auto;
}

.dropdown-divider {
	height: 0;
	margin: 0.5rem 0;
	overflow: hidden;
	border-top: 1px solid #ddd;
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: 3px 16px;
	clear: both;
	font-weight: 400;
	color: #212529;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	margin-bottom: 8px;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.28px;
	color: #95a6b7;
}

.dropdown-item i,
.dropdown-item svg {
	margin-right: 15px;
}

.dropdown-item:hover,
.dropdown-item:focus {
	color: var(--primary);
	text-decoration: none;
	background-color: white;
}

.dropdown-item.active,
.dropdown-item:active {
	color: var(--primary);
	text-decoration: none;
	/* background-color: var(--primary) */
}

.dropdown-item.disabled,
.dropdown-item:disabled {
	color: #6c757d;
	pointer-events: none;
	background-color: transparent;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-header {
	display: block;
	padding: 0.5rem 1.5rem;
	margin-bottom: 0;
	font-size: 1.2rem;
	color: #6c757d;
	white-space: nowrap;
}

.dropdown-item-text {
	display: block;
	padding: 0.7rem 1.5rem;
	color: #212529;
}

.btn-group,
.btn-group-vertical {
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover {
	z-index: 1;
}

.btn-group>.btn:focus,
.btn-group>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn.active {
	z-index: 1;
}

.btn-toolbar {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.btn-toolbar .input-group {
	width: auto;
}

.btn-group>.btn:not(:first-child),
.btn-group>.btn-group:not(:first-child) {
	margin-left: -1px;
}

.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group>.btn-group:not(:last-child)>.btn {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.btn-group>.btn:not(:first-child),
.btn-group>.btn-group:not(:first-child)>.btn {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
	padding-right: 1.275rem;
	padding-left: 1.275rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
	margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
	margin-right: 0;
}

.btn-sm+.dropdown-toggle-split,
.btn-group-sm>.btn+.dropdown-toggle-split {
	padding-right: 0.975rem;
	padding-left: 0.975rem;
}

.btn-lg+.dropdown-toggle-split,
.btn-group-lg>.btn+.dropdown-toggle-split {
	padding-right: 1.275rem;
	padding-left: 1.275rem;
}

.btn-group.show .dropdown-toggle {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.show .dropdown-toggle.btn-link {
	box-shadow: none;
}

.btn-group-vertical {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: center;
	justify-content: center;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
	width: 100%;
}

.btn-group-vertical>.btn:not(:first-child),
.btn-group-vertical>.btn-group:not(:first-child) {
	margin-top: -1px;
}

.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical>.btn-group:not(:last-child)>.btn {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn:not(:first-child),
.btn-group-vertical>.btn-group:not(:first-child)>.btn {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
	margin-bottom: 0;
}

.btn-group-toggle>.btn input[type="radio"],
.btn-group-toggle>.btn input[type="checkbox"],
.btn-group-toggle>.btn-group>.btn input[type="radio"],
.btn-group-toggle>.btn-group>.btn input[type="checkbox"] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}

.input-group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
}

.input-group>.form-control,
.input-group>.form-control-plaintext,
.input-group>.custom-select,
.input-group>.custom-file {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	margin-bottom: 0;
}

.input-group>.form-control+.form-control,
.input-group>.form-control+.custom-select,
.input-group>.form-control+.custom-file,
.input-group>.form-control-plaintext+.form-control,
.input-group>.form-control-plaintext+.custom-select,
.input-group>.form-control-plaintext+.custom-file,
.input-group>.custom-select+.form-control,
.input-group>.custom-select+.custom-select,
.input-group>.custom-select+.custom-file,
.input-group>.custom-file+.form-control,
.input-group>.custom-file+.custom-select,
.input-group>.custom-file+.custom-file {
	margin-left: -1px;
}

.input-group>.form-control:focus,
.input-group>.custom-select:focus,
.input-group>.custom-file .custom-file-input:focus~.custom-file-label {
	z-index: 3;
}

.input-group>.custom-file .custom-file-input:focus {
	z-index: 4;
}

.input-group>.form-control:not(:last-child),
.input-group>.custom-select:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.input-group>.form-control:not(:first-child),
.input-group>.custom-select:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group>.custom-file {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.input-group>.custom-file:not(:last-child) .custom-file-label,
.input-group>.custom-file:not(:last-child) .custom-file-label::after {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.input-group>.custom-file:not(:first-child) .custom-file-label {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
	display: -ms-flexbox;
	display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
	position: relative;
	z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
	z-index: 3;
}

.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.input-group-text,
.input-group-append .input-group-text+.btn {
	margin-left: -1px;
}

.input-group-prepend {
	margin-right: -1px;
}

.input-group-append {
	margin-left: -1px;
}

.input-group-text {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 1.06rem 1.7rem;
	margin-bottom: 0;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.4;
	color: #495057;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: 0.4rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
	margin-top: 0;
}

.input-group-lg>.form-control:not(textarea),
.input-group-lg>.custom-select {
	height: calc(1.4em + 2.48rem + 2px);
}

.input-group-lg>.form-control,
.input-group-lg>.custom-select,
.input-group-lg>.input-group-prepend>.input-group-text,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-append>.btn {
	padding: 1.24rem 1.7rem;
	font-size: 1.6rem;
	line-height: 1.4;
	border-radius: 0.6rem;
}

.input-group-sm>.form-control:not(textarea),
.input-group-sm>.custom-select {
	height: calc(1.4em + 1.76rem + 2px);
}

.input-group-sm>.form-control,
.input-group-sm>.custom-select,
.input-group-sm>.input-group-prepend>.input-group-text,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-append>.btn {
	padding: 0.88rem 1.3rem;
	font-size: 1.2rem;
	line-height: 1.4;
	border-radius: 0.4rem;
}

.input-group-lg>.custom-select,
.input-group-sm>.custom-select {
	padding-right: 3.3rem;
}

.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text,
.input-group>.input-group-append:not(:last-child)>.btn,
.input-group>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.custom-control {
	position: relative;
	display: block;
	min-height: 1.96rem;
	padding-left: 2.4rem;
}

.custom-control-inline {
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: 1.6rem;
}

.custom-control-input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	border-color: var(--primary);
	background-color: var(--primary);
	box-shadow: none;
}

.custom-control-input:focus~.custom-control-label::before {
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 0 0 rgba(81, 45, 168, 0.25);
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: #9679db;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
	color: #fff;
	background-color: #b6a2e6;
	border-color: #b6a2e6;
	box-shadow: none;
}

.custom-control-input:disabled~.custom-control-label {
	color: #6c757d;
}

.custom-control-input:disabled~.custom-control-label::before {
	background-color: #e9ecef;
}

.custom-control-label {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
}

.custom-control-label::before {
	position: absolute;
	top: 0.18rem;
	left: -2.4rem;
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	pointer-events: none;
	content: "";
	background-color: #fff;
	border: #adb5bd solid 1px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.custom-control-label::after {
	position: absolute;
	top: 0.18rem;
	left: -2.4rem;
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	content: "";
	background: no-repeat 50% / 50% 50%;
}

.custom-checkbox .custom-control-label::before {
	border-radius: 0.4rem;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
	border-color: var(--primary);
	background-color: var(--primary);
	box-shadow: none;
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
	background-color: rgba(81, 45, 168, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
	background-color: rgba(81, 45, 168, 0.5);
}

.custom-radio .custom-control-label::before {
	border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
	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");
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
	background-color: rgba(81, 45, 168, 0.5);
}

.custom-switch {
	padding-left: 2.55rem;
}

.custom-switch .custom-control-label::before {
	left: -2.55rem;
	width: 1.75rem;
	pointer-events: all;
	border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
	top: calc(0.18rem + 2px);
	left: calc(-2.55rem + 2px);
	width: calc(1rem - 4px);
	height: calc(1rem - 4px);
	background-color: #adb5bd;
	border-radius: 0.5rem;
	transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
	transition: transform 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: transform 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,
		-webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.custom-switch .custom-control-label::after {
		transition: none;
	}
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
	background-color: #fff;
	-webkit-transform: translateX(0.15rem);
	transform: translateX(0.15rem);
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
	background-color: rgba(81, 45, 168, 0.5);
}

.custom-select {
	display: inline-block;
	width: 100%;
	height: calc(1.4em + 2.12rem + 2px);
	padding: 1.06rem 3.3rem 1.06rem 1.7rem;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.4;
	color: #757575;
	vertical-align: middle;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.7rem center/8px 10px;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: 0.4rem;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.custom-select:focus {
	border-color: #9679db;
	outline: 0;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075),
		0 0 0 0 rgba(81, 45, 168, 0.25);
}

.custom-select:focus::-ms-value {
	color: #757575;
	background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
	height: auto;
	padding-right: 1.7rem;
	background-image: none;
}

.custom-select:disabled {
	color: #6c757d;
	background-color: #e9ecef;
}

.custom-select::-ms-expand {
	display: none;
}

.custom-select-sm {
	height: calc(1.4em + 1.76rem + 2px);
	padding-top: 0.88rem;
	padding-bottom: 0.88rem;
	padding-left: 1.3rem;
	font-size: 1.2rem;
}

.custom-select-lg {
	height: calc(1.4em + 2.48rem + 2px);
	padding-top: 1.24rem;
	padding-bottom: 1.24rem;
	padding-left: 1.7rem;
	font-size: 1.6rem;
}

.custom-file {
	position: relative;
	display: inline-block;
	width: 100%;
	height: calc(1.4em + 2.12rem + 2px);
	margin-bottom: 0;
}

.custom-file-input {
	position: relative;
	z-index: 2;
	width: 100%;
	height: calc(1.4em + 2.12rem + 2px);
	margin: 0;
	opacity: 0;
}

.custom-file-input:focus~.custom-file-label {
	border-color: #9679db;
	box-shadow: 0 0 0 0 rgba(81, 45, 168, 0.25);
}

.custom-file-input:disabled~.custom-file-label {
	background-color: #e9ecef;
}

.custom-file-input:lang(en)~.custom-file-label::after {
	content: "Browse";
}

.custom-file-input~.custom-file-label[data-browse]::after {
	content: attr(data-browse);
}

.custom-file-label {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: calc(1.4em + 2.12rem + 2px);
	padding: 1.06rem 1.7rem;
	font-weight: 400;
	line-height: 1.4;
	color: #757575;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: 0.4rem;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.custom-file-label::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: block;
	height: calc(1.4em + 2.12rem);
	padding: 1.06rem 1.7rem;
	line-height: 1.4;
	color: #757575;
	content: "Browse";
	background-color: #e9ecef;
	border-left: inherit;
	border-radius: 0 0.4rem 0.4rem 0;
}

.custom-range {
	width: 100%;
	height: calc(1rem + 0.4rem);
	padding: 0;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.custom-range:focus {
	outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
	box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(81, 45, 168, 0.25);
}

.custom-range:focus::-moz-range-thumb {
	box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(81, 45, 168, 0.25);
}

.custom-range:focus::-ms-thumb {
	box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(81, 45, 168, 0.25);
}

.custom-range::-moz-focus-outer {
	border: 0;
}

.custom-range::-webkit-slider-thumb {
	width: 1rem;
	height: 1rem;
	margin-top: -0.25rem;
	background-color: var(--primary);
	border: 0;
	border-radius: 1.6rem;
	box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
	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) {
	.custom-range::-webkit-slider-thumb {
		transition: none;
	}
}

.custom-range::-webkit-slider-thumb:active {
	background-color: #b6a2e6;
}

.custom-range::-webkit-slider-runnable-track {
	width: 100%;
	height: 0.5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem;
	box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-range::-moz-range-thumb {
	width: 1rem;
	height: 1rem;
	background-color: var(--primary);
	border: 0;
	border-radius: 1.6rem;
	box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
	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) {
	.custom-range::-moz-range-thumb {
		transition: none;
	}
}

.custom-range::-moz-range-thumb:active {
	background-color: #b6a2e6;
}

.custom-range::-moz-range-track {
	width: 100%;
	height: 0.5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem;
	box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-range::-ms-thumb {
	width: 1rem;
	height: 1rem;
	margin-top: 0;
	margin-right: 0.2rem;
	margin-left: 0.2rem;
	background-color: var(--primary);
	border: 0;
	border-radius: 1.6rem;
	box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
	transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
	appearance: none;
}

@media (prefers-reduced-motion: reduce) {
	.custom-range::-ms-thumb {
		transition: none;
	}
}

.custom-range::-ms-thumb:active {
	background-color: #b6a2e6;
}

.custom-range::-ms-track {
	width: 100%;
	height: 0.5rem;
	color: transparent;
	cursor: pointer;
	background-color: transparent;
	border-color: transparent;
	border-width: 0.5rem;
	box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-range::-ms-fill-lower {
	background-color: #dee2e6;
	border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
	margin-right: 15px;
	background-color: #dee2e6;
	border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
	background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
	cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
	background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
	cursor: default;
}

.custom-range:disabled::-ms-thumb {
	background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
	transition: 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) {

	.custom-control-label::before,
	.custom-file-label,
	.custom-select {
		transition: none;
	}
}

.nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-link {
	display: block;
	padding: 1rem 1.6rem;
}

.nav-link:hover,
.nav-link:focus {
	text-decoration: none;
}

.nav-link.disabled {
	color: #adb5bd;
	pointer-events: none;
	cursor: default;
}

.nav-tabs {
	border-bottom: 1px solid #fff;
}

.nav-tabs .nav-item {
	margin-bottom: -1px;
}

.nav-tabs .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
	border-color: transparent;
}

.nav-tabs .nav-link.disabled {
	color: #adb5bd;
	background-color: transparent;
	border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	/*color: var(--primary);*/
	/*background-color: #fff;*/
	/*border-color: transparent transparent #fff;*/
	color: #ffffff;
    background-color: #00c9fd;
    border-color: transparent transparent #fff;
}

.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.nav-pills .nav-link {
	border-radius: 0.4rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	color: #fff;
	background-color: var(--primary);
}

.nav-fill .nav-item {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	text-align: center;
}

.nav-justified .nav-item {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

.tab-content>.tab-pane {
	display: none;
}

.tab-content>.active {
	display: block;
}

.navbar {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0.5rem 1rem;
}

.navbar>.container,
.navbar>.container-fluid {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.navbar-brand {
	display: inline-block;
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	margin-right: 1rem;
	font-size: 1.25rem;
	line-height: inherit;
	white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
	text-decoration: none;
}

.navbar-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	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;
	float: none;
}

.navbar-text {
	display: inline-block;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.navbar-collapse {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-align: center;
	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;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
	text-decoration: none;
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	content: "";
	background: no-repeat center center;
	background-size: 100% 100%;
}

@media (max-width: 575.98px) {

	.navbar-expand-sm>.container,
	.navbar-expand-sm>.container-fluid {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 576px) {
	.navbar-expand-sm {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.navbar-expand-sm .navbar-nav {
		-ms-flex-direction: row;
		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>.container,
	.navbar-expand-sm>.container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.navbar-expand-sm .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}

	.navbar-expand-sm .navbar-toggler {
		display: none;
	}
}

@media (max-width: 767.98px) {

	.navbar-expand-md>.container,
	.navbar-expand-md>.container-fluid {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 768px) {
	.navbar-expand-md {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.navbar-expand-md .navbar-nav {
		-ms-flex-direction: row;
		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>.container,
	.navbar-expand-md>.container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.navbar-expand-md .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}

	.navbar-expand-md .navbar-toggler {
		display: none;
	}
}

@media (max-width: 991.98px) {

	.navbar-expand-lg>.container,
	.navbar-expand-lg>.container-fluid {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 992px) {
	.navbar-expand-lg {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.navbar-expand-lg .navbar-nav {
		-ms-flex-direction: row;
		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>.container,
	.navbar-expand-lg>.container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.navbar-expand-lg .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}

	.navbar-expand-lg .navbar-toggler {
		display: none;
	}
}

@media (max-width: 1199.98px) {

	.navbar-expand-xl>.container,
	.navbar-expand-xl>.container-fluid {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 1200px) {
	.navbar-expand-xl {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.navbar-expand-xl .navbar-nav {
		-ms-flex-direction: row;
		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>.container,
	.navbar-expand-xl>.container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.navbar-expand-xl .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}

	.navbar-expand-xl .navbar-toggler {
		display: none;
	}
}

.navbar-expand {
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
	padding-right: 0;
	padding-left: 0;
}

.navbar-expand .navbar-nav {
	-ms-flex-direction: row;
	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>.container,
.navbar-expand>.container-fluid {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}

.navbar-expand .navbar-toggler {
	display: none;
}

.navbar-light .navbar-brand {
	color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
	color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
	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 .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
	color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
	color: rgba(0, 0, 0, 0.5);
	border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
	color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
	color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
	color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
	color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
	color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
	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 .show>.nav-link,
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
	color: #fff;
}

.navbar-dark .navbar-toggler {
	color: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
	color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
	color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
	color: #fff;
}

.card {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 0px solid transparent;
	border-radius: 0.4rem;
}

.card>hr {
	margin-right: 0;
	margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
}

.card>.list-group:last-child .list-group-item:last-child {
	border-bottom-right-radius: 0.4rem;
	border-bottom-left-radius: 0.4rem;
}

.card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 3.2rem;
}

.card-title {
	margin-bottom: 3.2rem;
}

.card-subtitle {
	margin-top: -1.6rem;
	margin-bottom: 0;
}

.card-text:last-child {
	margin-bottom: 0;
}

.card-link:hover {
	text-decoration: none;
}

.card-link+.card-link {
	margin-left: 3.2rem;
}

.card-header {
	padding: 3.2rem 3.2rem;
	margin-bottom: 0;
	color: #757575;
	background-color: rgba(0, 0, 0, 0.05);
	border-bottom: 0px solid transparent;
}

.card-header:first-child {
	border-radius: calc(0.4rem - 0px) calc(0.4rem - 0px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
	border-top: 0;
}

.card-footer {
	padding: 3.2rem 3.2rem;
	background-color: rgba(0, 0, 0, 0.05);
	border-top: 0px solid transparent;
}

.card-footer:last-child {
	border-radius: 0 0 calc(0.4rem - 0px) calc(0.4rem - 0px);
}

.card-header-tabs {
	margin-right: -1.6rem;
	margin-bottom: -3.2rem;
	margin-left: -1.6rem;
	border-bottom: 0;
}

.card-header-pills {
	margin-right: -1.6rem;
	margin-left: -1.6rem;
}

.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 3.2rem;
}

.card-img {
	width: 100%;
	border-radius: calc(0.4rem - 0px);
}

.card-img-top {
	width: 100%;
	border-top-left-radius: calc(0.4rem - 0px);
	border-top-right-radius: calc(0.4rem - 0px);
}

.card-img-bottom {
	width: 100%;
	border-bottom-right-radius: calc(0.4rem - 0px);
	border-bottom-left-radius: calc(0.4rem - 0px);
}

.card-deck {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.card-deck .card {
	margin-bottom: 15px;
}

@media (min-width: 576px) {
	.card-deck {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin-right: -15px;
		margin-left: -15px;
	}

	.card-deck .card {
		display: -ms-flexbox;
		display: flex;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-right: 15px;
		margin-bottom: 0;
		margin-left: 15px;
	}
}

.card-group {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.card-group>.card {
	margin-bottom: 15px;
}

@media (min-width: 576px) {
	.card-group {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.card-group>.card {
		-ms-flex: 1 0 0%;
		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-img-top,
	.card-group>.card:not(:last-child) .card-header {
		border-top-right-radius: 0;
	}

	.card-group>.card:not(:last-child) .card-img-bottom,
	.card-group>.card:not(:last-child) .card-footer {
		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-img-top,
	.card-group>.card:not(:first-child) .card-header {
		border-top-left-radius: 0;
	}

	.card-group>.card:not(:first-child) .card-img-bottom,
	.card-group>.card:not(:first-child) .card-footer {
		border-bottom-left-radius: 0;
	}
}

.card-columns .card {
	margin-bottom: 2rem;
}

@media (min-width: 576px) {
	.card-columns {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
		-webkit-column-gap: 2rem;
		-moz-column-gap: 2rem;
		column-gap: 2rem;
		orphans: 1;
		widows: 1;
	}

	.card-columns .card {
		display: inline-block;
		width: 100%;
	}
}

.accordion>.card {
	overflow: hidden;
}

.accordion>.card:not(:first-of-type) .card-header:first-child {
	border-radius: 0;
}

.accordion>.card:not(:first-of-type):not(:last-of-type) {
	border-bottom: 0;
	border-radius: 0;
}

.accordion>.card:first-of-type {
	border-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.accordion>.card:last-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.accordion>.card .card-header {
	margin-bottom: 0px;
}

.breadcrumb {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 1.2rem 1.6rem;
	margin-bottom: 1rem;
	list-style: none;
	background-color: #e9ecef;
	border-radius: 0.4rem;
}

.breadcrumb-item+.breadcrumb-item {
	padding-left: 0.8rem;
}

.breadcrumb-item+.breadcrumb-item::before {
	display: inline-block;
	padding-right: 0.8rem;
	color: #757575;
	content: "/";
}

.breadcrumb-item+.breadcrumb-item:hover::before {
	text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item:hover::before {
	text-decoration: none;
}

.breadcrumb-item.active {
	color: #757575;
}

.pagination {
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: 0.4rem;
}

.page-link {
	position: relative;
	display: block;
	padding: 0.8rem 1.2rem;
	margin-left: -1px;
	line-height: 1.25;
	color: var(--primary);
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.page-link:hover {
	z-index: 2;
	color: var(--primary);
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6;
}

.page-link:focus {
	z-index: 2;
	outline: 0;
	box-shadow: 0 0 0 0 rgba(81, 45, 168, 0.25);
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: 0.4rem;
	border-bottom-left-radius: 0.4rem;
}

.page-item:last-child .page-link {
	border-top-right-radius: 0.4rem;
	border-bottom-right-radius: 0.4rem;
}

.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
}

.page-item.disabled .page-link {
	color: #adb5bd;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6;
}

.pagination-lg .page-link {
	padding: 1.2rem 2.4rem;
	font-size: 1.6rem;
	line-height: 1.4;
}

.pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: 0.6rem;
	border-bottom-left-radius: 0.6rem;
}

.pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: 0.6rem;
	border-bottom-right-radius: 0.6rem;
}

.pagination-sm .page-link {
	padding: 0.4rem 0.8rem;
	font-size: 1.2rem;
	line-height: 1.4;
}

.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.6rem 0.8rem;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.4rem;
	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) {
	.badge {
		transition: none;
	}
}

a.badge:hover,
a.badge:focus {
	text-decoration: none;
}

.badge:empty {
	display: none;
}

.btn .badge {
	position: relative;
	top: -1px;
}

.badge-pill {
	padding-right: 0.6em;
	padding-left: 0.6em;
	border-radius: 10rem;
}

.badge-primary {
	color: #fff;
	background-color: var(--primary);
}

a.badge-primary:hover,
a.badge-primary:focus {
	color: #fff;
	background-color: var(--primary);
}

a.badge-primary:focus,
a.badge-primary.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(81, 45, 168, 0.5);
}

.badge-secondary {
	color: #fff;
	/* background: linear-gradient(to right top, #000000, #090909, #131313, #1A1A1A, #202020) */
	background-color: var(--primary);
}

a.badge-secondary:hover,
a.badge-secondary:focus {
	color: #fff;
	background-color: #ff0d5f;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 64, 129, 0.5);
}

.badge-success {
	color: #fff;
	background-color: #52c41a;
}

a.badge-success:hover,
a.badge-success:focus {
	color: #fff;
	background-color: #3f9714;
}

a.badge-success:focus,
a.badge-success.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(82, 196, 26, 0.5);
}

.badge-info {
	color: #fff;
	background-color: #1890ff;
}

a.badge-info:hover,
a.badge-info:focus {
	color: #fff;
	background-color: #0076e4;
}

a.badge-info:focus,
a.badge-info.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(24, 144, 255, 0.5);
}

.badge-warning {
	color: #212529;
	background-color: #fa8c16;
}

a.badge-warning:hover,
a.badge-warning:focus {
	color: #212529;
	background-color: #d87205;
}

a.badge-warning:focus,
a.badge-warning.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(250, 140, 22, 0.5);
}

.badge-danger {
	color: #fff;
	background-color: #ef233c;
}

a.badge-danger:hover,
a.badge-danger:focus {
	color: #fff;
	background-color: #ea1c0d;
}

a.badge-danger:focus,
a.badge-danger.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}

.badge-light {
	color: #212529;
	background-color: #e5e5e5;
}

a.badge-light:hover,
a.badge-light:focus {
	color: #212529;
	background-color: #ccc;
}

a.badge-light:focus,
a.badge-light.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(229, 229, 229, 0.5);
}

.badge-dark {
	color: #fff;
	background-color: #212121;
}

a.badge-dark:hover,
a.badge-dark:focus {
	color: #fff;
	background-color: #080808;
}

a.badge-dark:focus,
a.badge-dark.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
}

.jumbotron {
	padding: 2rem 1rem;
	margin-bottom: 2rem;
	background-color: #e9ecef;
	border-radius: 0.6rem;
}

@media (min-width: 576px) {
	.jumbotron {
		padding: 4rem 2rem;
	}
}

.jumbotron-fluid {
	padding-right: 0;
	padding-left: 0;
	border-radius: 0;
}

.alert {
	position: relative;
	padding: 1.4rem 2rem;
	margin-bottom: 1.6rem;
	border: 1px solid transparent;
	border-radius: 0.4rem;
}

.alert-heading {
	color: inherit;
}

.alert-link {
	font-weight: 700;
}

.alert-dismissible {
	padding-right: 6.1rem;
}

.alert-dismissible .close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1.4rem 2rem;
	color: inherit;
}

.alert-primary {
	color: white;
	font-weight: 100;
	background: linear-gradient(to right top,
			#000000,
			#090909,
			#131313,
			#1a1a1a,
			#202020) !important;
	border-color: #cec4e7;
}

.alert-primary hr {
	border-top-color: #bfb2e0;
}

.alert-primary .alert-link {
	color: #170c2f;
}

.alert-secondary {
	color: #852143;
	background-color: #ffd9e6;
	border-color: #ffcadc;
}

.alert-secondary hr {
	border-top-color: #ffb1cb;
}

.alert-secondary .alert-link {
	color: #5c172e;
}

.alert-success {
	color: #2b660e;
	background-color: #dcf3d1;
	border-color: #cfeebf;
}

.alert-success hr {
	border-top-color: #c0e9ab;
}

.alert-success .alert-link {
	color: #183908;
}

.alert-info {
	color: #0c4b85;
	background-color: #d1e9ff;
	border-color: #bee0ff;
}

.alert-info hr {
	border-top-color: #a5d4ff;
}

.alert-info .alert-link {
	color: #083156;
}

.alert-warning {
	color: #82490b;
	background-color: #fee8d0;
	border-color: #fedfbe;
}

.alert-warning hr {
	border-top-color: #fed3a5;
}

.alert-warning .alert-link {
	color: #532f07;
}

.alert-danger {
	color: #7f231c;
	background-color: #fdd9d7;
	border-color: #fccac7;
}

.alert-danger hr {
	border-top-color: #fbb3af;
}

.alert-danger .alert-link {
	color: #551713;
}

.alert-light {
	color: #777;
	background-color: #fafafa;
	border-color: #f8f8f8;
}

.alert-light hr {
	border-top-color: #ebebeb;
}

.alert-light .alert-link {
	color: #5e5e5e;
}

.alert-dark {
	color: #111;
	background-color: #d3d3d3;
	border-color: #c1c1c1;
}

.alert-dark hr {
	border-top-color: #b4b4b4;
}

.alert-dark .alert-link {
	color: #000;
}

@-webkit-keyframes progress-bar-stripes {
	from {
		background-position: 1.6rem 0;
	}

	to {
		background-position: 0 0;
	}
}

@keyframes progress-bar-stripes {
	from {
		background-position: 1.6rem 0;
	}

	to {
		background-position: 0 0;
	}
}

.progress {
	display: -ms-flexbox;
	display: flex;
	height: 1.6rem;
	overflow: hidden;
	font-size: 1.05rem;
	background-color: #e9ecef;
	border-radius: 0.4rem;
	box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.progress-bar {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: var(--primary);
	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: 1.6rem 1.6rem;
}

.progress-bar-animated {
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
	.progress-bar-animated {
		-webkit-animation: none;
		animation: none;
	}
}

.media {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
}

.media-body {
	-ms-flex: 1;
	flex: 1;
}

.list-group {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
}

.list-group-item-action {
	width: 100%;
	color: #495057;
	text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
	z-index: 1;
	color: #495057;
	text-decoration: none;
	background-color: #e9ecef;
}

.list-group-item-action:active {
	color: #212529;
	background-color: #e9ecef;
}

.list-group-item {
	position: relative;
	display: block;
	padding: 1.2rem 2rem;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
}

.list-group-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: 0.4rem;
	border-bottom-left-radius: 0.4rem;
}

.list-group-item.disabled,
.list-group-item:disabled {
	color: #adb5bd;
	pointer-events: none;
	background-color: #fff;
}

.list-group-item.active {
	z-index: 2;
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary);
}

.list-group-horizontal {
	-ms-flex-direction: row;
	flex-direction: row;
}

.list-group-horizontal .list-group-item {
	margin-right: -1px;
	margin-bottom: 0;
}

.list-group-horizontal .list-group-item:first-child {
	border-top-left-radius: 0.4rem;
	border-bottom-left-radius: 0.4rem;
	border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
	margin-right: 0;
	border-top-right-radius: 0.4rem;
	border-bottom-right-radius: 0.4rem;
	border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
	.list-group-horizontal-sm {
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.list-group-horizontal-sm .list-group-item {
		margin-right: -1px;
		margin-bottom: 0;
	}

	.list-group-horizontal-sm .list-group-item:first-child {
		border-top-left-radius: 0.4rem;
		border-bottom-left-radius: 0.4rem;
		border-top-right-radius: 0;
	}

	.list-group-horizontal-sm .list-group-item:last-child {
		margin-right: 0;
		border-top-right-radius: 0.4rem;
		border-bottom-right-radius: 0.4rem;
		border-bottom-left-radius: 0;
	}
}

@media (min-width: 768px) {
	.list-group-horizontal-md {
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.list-group-horizontal-md .list-group-item {
		margin-right: -1px;
		margin-bottom: 0;
	}

	.list-group-horizontal-md .list-group-item:first-child {
		border-top-left-radius: 0.4rem;
		border-bottom-left-radius: 0.4rem;
		border-top-right-radius: 0;
	}

	.list-group-horizontal-md .list-group-item:last-child {
		margin-right: 0;
		border-top-right-radius: 0.4rem;
		border-bottom-right-radius: 0.4rem;
		border-bottom-left-radius: 0;
	}
}

@media (min-width: 992px) {
	.list-group-horizontal-lg {
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.list-group-horizontal-lg .list-group-item {
		margin-right: -1px;
		margin-bottom: 0;
	}

	.list-group-horizontal-lg .list-group-item:first-child {
		border-top-left-radius: 0.4rem;
		border-bottom-left-radius: 0.4rem;
		border-top-right-radius: 0;
	}

	.list-group-horizontal-lg .list-group-item:last-child {
		margin-right: 0;
		border-top-right-radius: 0.4rem;
		border-bottom-right-radius: 0.4rem;
		border-bottom-left-radius: 0;
	}
}

@media (min-width: 1200px) {
	.list-group-horizontal-xl {
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.list-group-horizontal-xl .list-group-item {
		margin-right: -1px;
		margin-bottom: 0;
	}

	.list-group-horizontal-xl .list-group-item:first-child {
		border-top-left-radius: 0.4rem;
		border-bottom-left-radius: 0.4rem;
		border-top-right-radius: 0;
	}

	.list-group-horizontal-xl .list-group-item:last-child {
		margin-right: 0;
		border-top-right-radius: 0.4rem;
		border-bottom-right-radius: 0.4rem;
		border-bottom-left-radius: 0;
	}
}

.list-group-flush .list-group-item {
	border-right: 0;
	border-left: 0;
	border-radius: 0;
}

.list-group-flush .list-group-item:last-child {
	margin-bottom: -1px;
}

.list-group-flush:first-child .list-group-item:first-child {
	border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.list-group-item-primary {
	color: #2a1757;
	background-color: #cec4e7;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
	color: #2a1757;
	background-color: #bfb2e0;
}

.list-group-item-primary.list-group-item-action.active {
	color: #fff;
	background-color: #2a1757;
	border-color: #2a1757;
}

.list-group-item-secondary {
	color: #852143;
	background-color: #ffcadc;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
	color: #852143;
	background-color: #ffb1cb;
}

.list-group-item-secondary.list-group-item-action.active {
	color: #fff;
	background-color: #852143;
	border-color: #852143;
}

.list-group-item-success {
	color: #2b660e;
	background-color: #cfeebf;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
	color: #2b660e;
	background-color: #c0e9ab;
}

.list-group-item-success.list-group-item-action.active {
	color: #fff;
	background-color: #2b660e;
	border-color: #2b660e;
}

.list-group-item-info {
	color: #0c4b85;
	background-color: #bee0ff;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
	color: #0c4b85;
	background-color: #a5d4ff;
}

.list-group-item-info.list-group-item-action.active {
	color: #fff;
	background-color: #0c4b85;
	border-color: #0c4b85;
}

.list-group-item-warning {
	color: #82490b;
	background-color: #fedfbe;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
	color: #82490b;
	background-color: #fed3a5;
}

.list-group-item-warning.list-group-item-action.active {
	color: #fff;
	background-color: #82490b;
	border-color: #82490b;
}

.list-group-item-danger {
	color: #7f231c;
	background-color: #fccac7;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
	color: #7f231c;
	background-color: #fbb3af;
}

.list-group-item-danger.list-group-item-action.active {
	color: #fff;
	background-color: #7f231c;
	border-color: #7f231c;
}

.list-group-item-light {
	color: #777;
	background-color: #f8f8f8;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
	color: #777;
	background-color: #ebebeb;
}

.list-group-item-light.list-group-item-action.active {
	color: #fff;
	background-color: #777;
	border-color: #777;
}

.list-group-item-dark {
	color: #111;
	background-color: #c1c1c1;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
	color: #111;
	background-color: #b4b4b4;
}

.list-group-item-dark.list-group-item-action.active {
	color: #fff;
	background-color: #111;
	border-color: #111;
}

.close {
	outline: none;
	float: right;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: 0.5;
}

.close:hover {
	color: #000;
	text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
	opacity: 0.75;
}

button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

a.close.disabled {
	pointer-events: none;
}

.hide {
	display: none;
}

.cnt_full {
	display: block;
	margin: 20px 10px;
	width: 100%;
}

/* @media (min-width: 390px ){
  .cnt_min {
    margin-bottom: 15em!important;
  }
}

@media (min-width: 775px ){
  .cnt_min {
    margin-bottom: 0em!important;
  }
} */
.cnt_min:last-of-type {
	margin: 0;
}

.cnt_min {
	position: relative;
	display: inline-block;
	width: 31px;
	height: 31px;
	margin: 0 15px 0 0;
}

.cnt_min_div {
	border: 1px solid #ececec;
	border-radius: 2px;
	background-color: #f1f1f1;
	padding: 4px;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.cnt_min input[type="radio"] {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.selected_img {
	pointer-events: none;
	width: 100%;
}

.cnt_min input[type="radio"]:checked+.cnt_min_div {
	background-color: white !important;
	box-shadow: 0px 3px 6px #00000029;
	border: 1px solid #ececec;
	border-radius: 2px;
}

.toast {
	max-width: 350px;
	overflow: hidden;
	font-size: 1.4rem;
	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.25rem 0.75rem rgba(0, 0, 0, 0.1);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 0;
	border-radius: 0.4rem;
}

.toast:not(:last-child) {
	margin-bottom: 1.2rem;
}

.toast.showing {
	opacity: 1;
}

.toast.show {
	display: block;
	opacity: 1;
}

.toast.hide {
	display: none;
}

.toast-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 0.4rem 1.2rem;
	color: #6c757d;
	background-color: rgba(255, 255, 255, 0.85);
	background-clip: padding-box;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
	padding: 1.2rem;
}

.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.8rem;
	pointer-events: none;
}

.modal.fade .modal-dialog {
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	-webkit-transform: translate(0, -50px);
	transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: none;
	}
}

.modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none;
}

.modal-dialog-scrollable {
	display: -ms-flexbox;
	display: flex;
	max-height: calc(100% - 1.6rem);
}

.modal-dialog-scrollable .modal-content {
	max-height: calc(100vh - 1.6rem);
	overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}

.modal-dialog-centered {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - 1.6rem);
}

.modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1.6rem);
	content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
	max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
	content: none;
}

.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	outline: 0;
	background-color: #ffffff;
	box-shadow: 0px 0px 25px #0000001c;
	border: 1px solid #ebebeb;
	border-radius: 35px;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	display: none;
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.modal-backdrop.fade {
	opacity: 0;
}

.modal-backdrop.show {
	opacity: 1;
	display: block;
}

.modal-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1.6rem 1.6rem;
	border-bottom: 1px solid #ddd;
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
}

.modal-header .close {
	padding: 1.6rem 1.6rem;
	margin: -1.6rem -1.6rem -1.6rem auto;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.4;
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.6rem;
}

.modal-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 1.6rem;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 0.4rem;
	border-bottom-left-radius: 0.4rem;
}

.modal-footer> :not(:first-child) {
	margin-left: 0.25rem;
}

.modal-footer> :not(:last-child) {
	margin-right: 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: 2.8rem auto;
	}

	.modal-dialog-scrollable {
		max-height: calc(100% - 5.6rem);
	}

	.modal-dialog-scrollable .modal-content {
		max-height: calc(100vh - 5.6rem);
	}

	.modal-dialog-centered {
		min-height: calc(100% - 5.6rem);
	}

	.modal-dialog-centered::before {
		height: calc(100vh - 5.6rem);
	}

	.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;
	}
}

.tooltip {
	position: absolute;
	z-index: 1502;
	display: block;
	margin: 0;
	font-family: "NoirPro", sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	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: 1.2rem;
	word-wrap: break-word;
	opacity: 0;
}

.tooltip.show {
	opacity: 0.9;
}

.tooltip .arrow {
	position: absolute;
	display: block;
	width: 0.8rem;
	height: 0.4rem;
}

.tooltip .arrow::before {
	position: absolute;
	content: "";
	border-color: transparent;
	border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
	padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
	bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
	top: 0;
	border-width: 0.4rem 0.4rem 0;
	border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
	padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
	left: 0;
	width: 0.4rem;
	height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
	right: 0;
	border-width: 0.4rem 0.4rem 0.4rem 0;
	border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
	padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
	top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
	bottom: 0;
	border-width: 0 0.4rem 0.4rem;
	border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
	padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
	right: 0;
	width: 0.4rem;
	height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
	left: 0;
	border-width: 0.4rem 0 0.4rem 0.4rem;
	border-left-color: #000;
}

.tooltip-inner {
	max-width: 200px;
	padding: 0.4rem 0.8rem;
	color: #fff;
	text-align: center;
	background-color: #000;
	border-radius: 0.4rem;
}

.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1060;
	display: block;
	max-width: 276px;
	font-family: "NoirPro", sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	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: 1.2rem;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.popover .arrow {
	position: absolute;
	display: block;
	width: 1.6rem;
	height: 0.8rem;
	margin: 0 0.6rem;
}

.popover .arrow::before,
.popover .arrow::after {
	position: absolute;
	display: block;
	content: "";
	border-color: transparent;
	border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
	margin-bottom: 0.8rem;
}

.bs-popover-top>.arrow,
.bs-popover-auto[x-placement^="top"]>.arrow {
	bottom: calc((0.8rem + 1px) * -1);
}

.bs-popover-top>.arrow::before,
.bs-popover-auto[x-placement^="top"]>.arrow::before {
	bottom: 0;
	border-width: 0.8rem 0.8rem 0;
	border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top>.arrow::after,
.bs-popover-auto[x-placement^="top"]>.arrow::after {
	bottom: 1px;
	border-width: 0.8rem 0.8rem 0;
	border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
	margin-left: 0.8rem;
}

.bs-popover-right>.arrow,
.bs-popover-auto[x-placement^="right"]>.arrow {
	left: calc((0.8rem + 1px) * -1);
	width: 0.8rem;
	height: 1.6rem;
	margin: 0.6rem 0;
}

.bs-popover-right>.arrow::before,
.bs-popover-auto[x-placement^="right"]>.arrow::before {
	left: 0;
	border-width: 0.8rem 0.8rem 0.8rem 0;
	border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right>.arrow::after,
.bs-popover-auto[x-placement^="right"]>.arrow::after {
	left: 1px;
	border-width: 0.8rem 0.8rem 0.8rem 0;
	border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
	margin-top: 0.8rem;
}

.bs-popover-bottom>.arrow,
.bs-popover-auto[x-placement^="bottom"]>.arrow {
	top: calc((0.8rem + 1px) * -1);
}

.bs-popover-bottom>.arrow::before,
.bs-popover-auto[x-placement^="bottom"]>.arrow::before {
	top: 0;
	border-width: 0 0.8rem 0.8rem 0.8rem;
	border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom>.arrow::after,
.bs-popover-auto[x-placement^="bottom"]>.arrow::after {
	top: 1px;
	border-width: 0 0.8rem 0.8rem 0.8rem;
	border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 1.6rem;
	margin-left: -0.8rem;
	content: "";
	border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
	margin-right: 0.8rem;
}

.bs-popover-left>.arrow,
.bs-popover-auto[x-placement^="left"]>.arrow {
	right: calc((0.8rem + 1px) * -1);
	width: 0.8rem;
	height: 1.6rem;
	margin: 0.6rem 0;
}

.bs-popover-left>.arrow::before,
.bs-popover-auto[x-placement^="left"]>.arrow::before {
	right: 0;
	border-width: 0.8rem 0 0.8rem 0.8rem;
	border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left>.arrow::after,
.bs-popover-auto[x-placement^="left"]>.arrow::after {
	right: 1px;
	border-width: 0.8rem 0 0.8rem 0.8rem;
	border-left-color: #fff;
}

.popover-header {
	padding: 0.8rem 1.2rem;
	margin-bottom: 0;
	font-size: 1.4rem;
	color: #212121;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	border-top-left-radius: calc(0.6rem - 1px);
	border-top-right-radius: calc(0.6rem - 1px);
}

.popover-header:empty {
	display: none;
}

.popover-body {
	padding: 0.8rem 1.2rem;
	color: #757575;
}

.carousel {
	position: relative;
}

.carousel.pointer-event {
	-ms-touch-action: pan-y;
	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: -webkit-transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.carousel-item {
		transition: none;
	}
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
	display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.carousel-fade .carousel-item {
	opacity: 0;
	transition-property: opacity;
	-webkit-transform: none;
	transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
	z-index: 1;
	opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
	z-index: 0;
	opacity: 0;
	transition: 0s 0.6s opacity;
}

@media (prefers-reduced-motion: reduce) {

	.carousel-fade .active.carousel-item-left,
	.carousel-fade .active.carousel-item-right {
		transition: none;
	}
}

.carousel-control-prev,
.carousel-control-next {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 15%;
	color: #fff;
	text-align: center;
	opacity: 0.5;
	transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

	.carousel-control-prev,
	.carousel-control-next {
		transition: none;
	}
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: 0.9;
}

.carousel-control-prev {
	left: 0;
}

.carousel-control-next {
	right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 15;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
}

.carousel-indicators li {
	box-sizing: content-box;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #fff;
	background-clip: padding-box;
	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 li {
		transition: none;
	}
}

.carousel-indicators .active {
	opacity: 1;
}

.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
}

@-webkit-keyframes spinner-border {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner-border {
	to {
		-webkit-transform: rotate(360deg);
		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: spinner-border 0.75s linear infinite;
	animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
	width: 1rem;
	height: 1rem;
	border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		opacity: 1;
	}
}

@keyframes spinner-grow {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		opacity: 1;
	}
}

.spinner-grow {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: text-bottom;
	background-color: currentColor;
	border-radius: 50%;
	opacity: 0;
	-webkit-animation: spinner-grow 0.75s linear infinite;
	animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
	width: 1rem;
	height: 1rem;
}

.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;
}

.bg-primary {
	background-color: var(--primary) !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
	background-color: var(--primary) !important;
}

.bg-secondary {
	background-color: #5c6061 !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
	background-color: #ff0d5f !important;
}

.bg-success {
	background-color: #52c41a !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
	background-color: #3f9714 !important;
}

.bg-info {
	background-color: #1890ff !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
	background-color: #0076e4 !important;
}

.bg-warning {
	background-color: #fa8c16 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
	background-color: #d87205 !important;
}

.bg-danger {
	background-color: #d32c1f !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
	background-color: #ea1c0d !important;
}

.bg-light {
	background-color: #e5e5e5 !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
	background-color: #ccc !important;
}

.bg-dark {
	background-color: #212121 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
	background-color: #080808 !important;
}

.bg-white {
	background-color: #fff !important;
}

.bg-transparent {
	background-color: transparent !important;
}

.border {
	border: 1px solid #ddd !important;
}

.border-top {
	border-top: 1px solid #ddd !important;
}

.border-right {
	border-right: 1px solid #ddd !important;
}

.border-bottom {
	border-bottom: 1px solid #ddd !important;
}

.border-left {
	border-left: 1px solid #ddd !important;
}

.border-0 {
	border: 0 !important;
}

.border-top-0 {
	border-top: 0 !important;
}

.border-right-0 {
	border-right: 0 !important;
}

.border-bottom-0 {
	border-bottom: 0 !important;
}

.border-left-0 {
	border-left: 0 !important;
}

.border-primary {
	border-color: var(--primary) !important;
}

.border-secondary {
	border-color: #ff4081 !important;
}

.border-success {
	border-color: #52c41a !important;
}

.border-info {
	border-color: #1890ff !important;
}

.border-warning {
	border-color: #fa8c16 !important;
}

.border-danger {
	border-color: #d32c1f !important;
}

.border-light {
	border-color: #e5e5e5 !important;
}

.border-dark {
	border-color: #212121 !important;
}

.border-white {
	border-color: #fff !important;
}

.rounded-sm {
	border-radius: 0.2rem !important;
}

.rounded {
	border-radius: 0.4rem !important;
}

.rounded-top {
	border-top-left-radius: 0.4rem !important;
	border-top-right-radius: 0.4rem !important;
}

.rounded-right {
	border-top-right-radius: 0.4rem !important;
	border-bottom-right-radius: 0.4rem !important;
}

.rounded-bottom {
	border-bottom-right-radius: 0.4rem !important;
	border-bottom-left-radius: 0.4rem !important;
}

.rounded-left {
	border-top-left-radius: 0.4rem !important;
	border-bottom-left-radius: 0.4rem !important;
}

.rounded-lg {
	border-radius: 0.6rem !important;
}

.rounded-circle {
	border-radius: 50% !important;
}

.rounded-pill {
	border-radius: 50rem !important;
}

.rounded-0 {
	border-radius: 0 !important;
}

.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

.d-none {
	display: none !important;
}

.d-inline {
	display: inline !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-block {
	display: block !important;
}

.d-table {
	display: table !important;
}

.d-table-row {
	display: table-row !important;
}

.d-table-cell {
	display: table-cell !important;
}

.d-flex {
	display: -ms-flexbox !important;
	display: flex !important;
}

.d-inline-flex {
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
}

@media (min-width: 576px) {
	.d-sm-none {
		display: none !important;
	}

	.d-sm-inline {
		display: inline !important;
	}

	.d-sm-inline-block {
		display: inline-block !important;
	}

	.d-sm-block {
		display: block !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: -ms-flexbox !important;
		display: flex !important;
	}

	.d-sm-inline-flex {
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}

	.d-md-inline {
		display: inline !important;
	}

	.d-md-inline-block {
		display: inline-block !important;
	}

	.d-md-block {
		display: block !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: -ms-flexbox !important;
		display: flex !important;
	}

	.d-md-inline-flex {
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}

	.d-lg-inline {
		display: inline !important;
	}

	.d-lg-inline-block {
		display: inline-block !important;
	}

	.d-lg-block {
		display: block !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: -ms-flexbox !important;
		display: flex !important;
	}

	.d-lg-inline-flex {
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 1200px) {
	.d-xl-none {
		display: none !important;
	}

	.d-xl-inline {
		display: inline !important;
	}

	.d-xl-inline-block {
		display: inline-block !important;
	}

	.d-xl-block {
		display: block !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: -ms-flexbox !important;
		display: flex !important;
	}

	.d-xl-inline-flex {
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media print {
	.d-print-none {
		display: none !important;
	}

	.d-print-inline {
		display: inline !important;
	}

	.d-print-inline-block {
		display: inline-block !important;
	}

	.d-print-block {
		display: block !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: -ms-flexbox !important;
		display: flex !important;
	}

	.d-print-inline-flex {
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.embed-responsive::before {
	display: block;
	content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-21by9::before {
	padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}

.embed-responsive-4by3::before {
	padding-top: 75%;
}

.embed-responsive-1by1::before {
	padding-top: 100%;
}

.embed-responsive-21by9::before {
	padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}

.embed-responsive-4by3::before {
	padding-top: 75%;
}

.embed-responsive-1by1::before {
	padding-top: 100%;
}

.flex-row {
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.flex-column {
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.flex-row-reverse {
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

.flex-wrap {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

.flex-nowrap {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse !important;
	flex-wrap: wrap-reverse !important;
}

.flex-fill {
	-ms-flex: 1 1 auto !important;
	flex: 1 1 auto !important;
}

.flex-grow-0 {
	-ms-flex-positive: 0 !important;
	flex-grow: 0 !important;
}

.flex-grow-1 {
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important;
}

.flex-shrink-0 {
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
}

.flex-shrink-1 {
	-ms-flex-negative: 1 !important;
	flex-shrink: 1 !important;
}

.justify-content-start {
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}

.justify-content-end {
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

.justify-content-center {
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-between {
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important;
}

.align-items-start {
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}

.align-items-end {
	-ms-flex-align: end !important;
	align-items: flex-end !important;
}

.align-items-center {
	-ms-flex-align: center !important;
	align-items: center !important;
}

.align-items-baseline {
	-ms-flex-align: baseline !important;
	align-items: baseline !important;
}

.align-items-stretch {
	-ms-flex-align: stretch !important;
	align-items: stretch !important;
}

.align-content-start {
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important;
}

.align-content-end {
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important;
}

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important;
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important;
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important;
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important;
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	align-self: auto !important;
}

.align-self-start {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

.align-self-end {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important;
}

.align-self-center {
	-ms-flex-item-align: center !important;
	align-self: center !important;
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important;
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	align-self: stretch !important;
}

@media (min-width: 576px) {
	.flex-sm-row {
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-sm-column {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-sm-row-reverse {
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-sm-column-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-sm-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-sm-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-sm-fill {
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-sm-grow-0 {
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-sm-grow-1 {
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-sm-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-sm-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-sm-start {
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-sm-end {
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-sm-center {
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-sm-between {
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-sm-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-sm-start {
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-sm-end {
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-sm-center {
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-sm-baseline {
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-sm-stretch {
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-sm-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-sm-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-sm-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-sm-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-sm-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-sm-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-sm-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-sm-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-sm-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-sm-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-sm-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 768px) {
	.flex-md-row {
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-md-column {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-md-row-reverse {
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-md-column-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-md-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-md-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-md-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-md-fill {
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-md-grow-0 {
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-md-grow-1 {
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-md-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-md-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-md-start {
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-md-end {
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-md-center {
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-md-between {
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-md-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-md-start {
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-md-end {
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-md-center {
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-md-baseline {
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-md-stretch {
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-md-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-md-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-md-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-md-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-md-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-md-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-md-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-md-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-md-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-md-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-md-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-md-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 992px) {
	.flex-lg-row {
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-lg-column {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-lg-row-reverse {
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-lg-column-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-lg-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-lg-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-lg-fill {
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-lg-grow-0 {
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-lg-grow-1 {
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-lg-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-lg-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-lg-start {
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-lg-end {
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-lg-center {
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-lg-between {
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-lg-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-lg-start {
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-lg-end {
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-lg-center {
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-lg-baseline {
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-lg-stretch {
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-lg-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-lg-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-lg-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-lg-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-lg-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-lg-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-lg-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-lg-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-lg-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-lg-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-lg-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 1200px) {
	.flex-xl-row {
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-xl-column {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-xl-row-reverse {
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-xl-column-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-xl-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-xl-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-xl-fill {
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-xl-grow-0 {
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-xl-grow-1 {
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-xl-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-xl-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-xl-start {
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-xl-end {
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-xl-center {
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-xl-between {
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-xl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-xl-start {
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-xl-end {
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-xl-center {
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-xl-baseline {
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-xl-stretch {
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-xl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-xl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-xl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-xl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-xl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-xl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-xl-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-xl-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-xl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-xl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-xl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

.float-left {
	float: left !important;
}

.float-right {
	float: right !important;
}

.float-none {
	float: none !important;
}

@media (min-width: 576px) {
	.float-sm-left {
		float: left !important;
	}

	.float-sm-right {
		float: right !important;
	}

	.float-sm-none {
		float: none !important;
	}
}

@media (min-width: 768px) {
	.float-md-left {
		float: left !important;
	}

	.float-md-right {
		float: right !important;
	}

	.float-md-none {
		float: none !important;
	}
}

@media (min-width: 992px) {
	.float-lg-left {
		float: left !important;
	}

	.float-lg-right {
		float: right !important;
	}

	.float-lg-none {
		float: none !important;
	}
}

@media (min-width: 1200px) {
	.float-xl-left {
		float: left !important;
	}

	.float-xl-right {
		float: right !important;
	}

	.float-xl-none {
		float: none !important;
	}
}

.overflow-auto {
	overflow: auto !important;
}

.overflow-hidden {
	overflow: hidden !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;
}

.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;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
	.sticky-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

.shadow-sm {
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15) !important;
}

.shadow {
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2) !important;
}

.shadow-lg {
	box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2) !important;
}

.shadow-none {
	box-shadow: none !important;
}

.w-25 {
	width: 25% !important;
}

.w-50 {
	width: 50% !important;
}

.w-65 {
	width: 65% !important;
}

.w-75 {
	width: 75% !important;
}

.w-100 {
	width: 100% !important;
}

.w-auto {
	width: auto !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;
}

.mw-100 {
	max-width: 100% !important;
}

.mh-100 {
	max-height: 100% !important;
}

.min-vw-100 {
	min-width: 100vw !important;
}

.min-vh-100 {
	min-height: 100vh !important;
}

.vw-100 {
	width: 100vw !important;
}

.vh-100 {
	height: 100vh !important;
}

.stretched-link::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	pointer-events: auto;
	content: "";
	background-color: transparent;
}

.m-0 {
	margin: 0 !important;
}

.mt-0,
.my-0 {
	margin-top: 0 !important;
}

.mr-0,
.mx-0 {
	margin-right: 0 !important;
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
	margin-left: 0 !important;
}

.m-1 {
	margin: 0.4rem !important;
}

.mt-1,
.my-1 {
	margin-top: 0.4rem !important;
}

.mr-1,
.mx-1 {
	margin-right: 0.4rem !important;
}

.mb-1,
.my-1 {
	margin-bottom: 0.4rem !important;
}

.ml-1,
.mx-1 {
	margin-left: 0.4rem !important;
}

.m-2 {
	margin: 0.8rem !important;
}

.mt-2,
.my-2 {
	margin-top: 0.8rem !important;
}

.mt-20,
.my-20 {
	margin-top: 20em !important;
}

.mr-2,
.mx-2 {
	margin-right: 0.8rem !important;
}

.mb-2,
.my-2 {
	margin-bottom: 0.8rem !important;
}

.ml-2,
.mx-2 {
	margin-left: 0.8rem !important;
}

.m-3 {
	margin: 1.2rem !important;
}

.mt-3,
.my-3 {
	margin-top: 1.2rem !important;
}

.mr-3,
.mx-3 {
	margin-right: 1.2rem !important;
}

.mb-3,
.my-3 {
	margin-bottom: 1.2rem !important;
}

.ml-3,
.mx-3 {
	margin-left: 1.2rem !important;
}

.m-4 {
	margin: 1.6rem !important;
}

.mt-4,
.my-4 {
	margin-top: 1.6rem !important;
}

.mr-4,
.mx-4 {
	margin-right: 1.6rem !important;
}

.mb-4,
.my-4 {
	margin-bottom: 1.6rem !important;
}

.ml-4,
.mx-4 {
	margin-left: 1.6rem !important;
}

.m-5 {
	margin: 2rem !important;
}

.mt-5,
.my-5 {
	margin-top: 2rem !important;
}

.mr-5,
.mx-5 {
	margin-right: 2rem !important;
}

.mb-5,
.my-5 {
	margin-bottom: 2rem !important;
}

.ml-5,
.mx-5 {
	margin-left: 2rem !important;
}

.m-6 {
	margin: 2.4rem !important;
}

.mt-6,
.my-6 {
	margin-top: 2.4rem !important;
}

.mr-6,
.mx-6 {
	margin-right: 2.4rem !important;
}

.mb-6,
.my-6 {
	margin-bottom: 2.4rem !important;
}

.ml-6,
.mx-6 {
	margin-left: 2.4rem !important;
}

.m-7 {
	margin: 2.8rem !important;
}

.mt-7,
.my-7 {
	margin-top: 2.8rem !important;
}

.mr-7,
.mx-7 {
	margin-right: 2.8rem !important;
}

.mb-7,
.my-7 {
	margin-bottom: 2.8rem !important;
}

.ml-7,
.mx-7 {
	margin-left: 2.8rem !important;
}

.m-8 {
	margin: 3.2rem !important;
}

.mt-8,
.my-8 {
	margin-top: 3.2rem !important;
}

.mr-8,
.mx-8 {
	margin-right: 3.2rem !important;
}

.mb-8,
.my-8 {
	margin-bottom: 3.2rem !important;
}

.ml-8,
.mx-8 {
	margin-left: 3.2rem !important;
}

.m-9 {
	margin: 3.6rem !important;
}

.mt-9,
.my-9 {
	margin-top: 3.6rem !important;
}

.mr-9,
.mx-9 {
	margin-right: 3.6rem !important;
}

.mb-9,
.my-9 {
	margin-bottom: 3.6rem !important;
}

.ml-9,
.mx-9 {
	margin-left: 3.6rem !important;
}

.m-10 {
	margin: 4rem !important;
}

.mt-10,
.my-10 {
	margin-top: 4rem !important;
}

.mr-10,
.mx-10 {
	margin-right: 4rem !important;
}

.mb-10,
.my-10 {
	margin-bottom: 4rem !important;
}

.mb--5 {
	margin-bottom: -5px;
}

.mb--10 {
	margin-bottom: -10px;
}

.mt-mb-25 {
	margin-top: -2rem !important;
	margin-bottom: -2rem !important;
}

.ml-10,
.mx-10 {
	margin-left: 4rem !important;
}

.p-0 {
	padding: 0 !important;
}

.pt-0,
.py-0 {
	padding-top: 0 !important;
}

.pr-0,
.px-0 {
	padding-right: 0 !important;
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
	padding-left: 0 !important;
}

.p-1 {
	padding: 0.4rem !important;
}

.pt-1,
.py-1 {
	padding-top: 0.4rem !important;
}

.pr-1,
.px-1 {
	padding-right: 0.4rem !important;
}

.pb-1,
.py-1 {
	padding-bottom: 0.4rem !important;
}

.pl-1,
.px-1 {
	padding-left: 0.4rem !important;
}

.p-2 {
	padding: 0.8rem !important;
}

.pt-2,
.py-2 {
	padding-top: 0.8rem !important;
}

.pr-2,
.px-2 {
	padding-right: 0.8rem !important;
}

.pb-2,
.py-2 {
	padding-bottom: 0.8rem !important;
}

.pl-2,
.px-2 {
	padding-left: 0.8rem !important;
}

.p-3 {
	padding: 1.2rem !important;
}

.pt-3,
.py-3 {
	padding-top: 1.2rem !important;
}

.pr-3,
.px-3 {
	padding-right: 1.2rem !important;
}

.pb-3,
.py-3 {
	padding-bottom: 1.2rem !important;
}

.pl-3,
.px-3 {
	padding-left: 1.2rem !important;
}

.p-4 {
	padding: 1.6rem !important;
}

.pt-4,
.py-4 {
	padding-top: 1.6rem !important;
}

.pr-4,
.px-4 {
	padding-right: 1.6rem !important;
}

.pb-4,
.py-4 {
	padding-bottom: 1.6rem !important;
}

.pl-4,
.px-4 {
	padding-left: 1.6rem !important;
}

.p-5 {
	padding: 2rem !important;
}

.pt-5,
.py-5 {
	padding-top: 2rem !important;
}

.pr-5,
.px-5 {
	padding-right: 2rem !important;
}

.pb-5,
.py-5 {
	padding-bottom: 2rem !important;
}

.pl-5,
.px-5 {
	padding-left: 2rem !important;
}

.p-6 {
	padding: 2.4rem !important;
}

.pt-6,
.py-6 {
	padding-top: 2.4rem !important;
}

.pr-6,
.px-6 {
	padding-right: 2.4rem !important;
}

.pb-6,
.py-6 {
	padding-bottom: 2.4rem !important;
}

.pl-6,
.px-6 {
	padding-left: 2.4rem !important;
}

.p-7 {
	padding: 2.8rem !important;
}

.pt-7,
.py-7 {
	padding-top: 2.8rem !important;
}

.pr-7,
.px-7 {
	padding-right: 2.8rem !important;
}

.pb-7,
.py-7 {
	padding-bottom: 2.8rem !important;
}

.pl-7,
.px-7 {
	padding-left: 2.8rem !important;
}

.p-8 {
	padding: 3.2rem !important;
}

.pt-8,
.py-8 {
	padding-top: 3.2rem !important;
}

.pr-8,
.px-8 {
	padding-right: 3.2rem !important;
}

.pb-8,
.py-8 {
	padding-bottom: 3.2rem !important;
}

.pl-8,
.px-8 {
	padding-left: 3.2rem !important;
}

.p-9 {
	padding: 3.6rem !important;
}

.pt-9,
.py-9 {
	padding-top: 3.6rem !important;
}

.pr-9,
.px-9 {
	padding-right: 3.6rem !important;
}

.pb-9,
.py-9 {
	padding-bottom: 3.6rem !important;
}

.pl-9,
.px-9 {
	padding-left: 3.6rem !important;
}

.p-10 {
	padding: 4rem !important;
}

.pt-10,
.py-10 {
	padding-top: 4rem !important;
}

.pr-10,
.px-10 {
	padding-right: 4rem !important;
}

.pb-10,
.py-10 {
	padding-bottom: 4rem !important;
}

.pl-10,
.px-10 {
	padding-left: 4rem !important;
}

.m-n1 {
	margin: -0.4rem !important;
}

.mt-n1,
.my-n1 {
	margin-top: -0.4rem !important;
}

.mr-n1,
.mx-n1 {
	margin-right: -0.4rem !important;
}

.mb-n1,
.my-n1 {
	margin-bottom: -0.4rem !important;
}

.ml-n1,
.mx-n1 {
	margin-left: -0.4rem !important;
}

.m-n2 {
	margin: -0.8rem !important;
}

.mt-n2,
.my-n2 {
	margin-top: -0.8rem !important;
}

.mr-n2,
.mx-n2 {
	margin-right: -0.8rem !important;
}

.mb-n2,
.my-n2 {
	margin-bottom: -0.8rem !important;
}

.ml-n2,
.mx-n2 {
	margin-left: -0.8rem !important;
}

.m-n3 {
	margin: -1.2rem !important;
}

.mt-n3,
.my-n3 {
	margin-top: -1.2rem !important;
}

.mr-n3,
.mx-n3 {
	margin-right: -1.2rem !important;
}

.mb-n3,
.my-n3 {
	margin-bottom: -1.2rem !important;
}

.ml-n3,
.mx-n3 {
	margin-left: -1.2rem !important;
}

.m-n4 {
	margin: -1.6rem !important;
}

.mt-n4,
.my-n4 {
	margin-top: -1.6rem !important;
}

.mr-n4,
.mx-n4 {
	margin-right: -1.6rem !important;
}

.mb-n4,
.my-n4 {
	margin-bottom: -1.6rem !important;
}

.ml-n4,
.mx-n4 {
	margin-left: -1.6rem !important;
}

.m-n5 {
	margin: -2rem !important;
}

.mt-n5,
.my-n5 {
	margin-top: -2rem !important;
}

.mr-n5,
.mx-n5 {
	margin-right: -2rem !important;
}

.mb-n5,
.my-n5 {
	margin-bottom: -2rem !important;
}

.ml-n5,
.mx-n5 {
	margin-left: -2rem !important;
}

.m-n6 {
	margin: -2.4rem !important;
}

.mt-n6,
.my-n6 {
	margin-top: -2.4rem !important;
}

.mr-n6,
.mx-n6 {
	margin-right: -2.4rem !important;
}

.mb-n6,
.my-n6 {
	margin-bottom: -2.4rem !important;
}

.ml-n6,
.mx-n6 {
	margin-left: -2.4rem !important;
}

.m-n7 {
	margin: -2.8rem !important;
}

.mt-n7,
.my-n7 {
	margin-top: -2.8rem !important;
}

.mr-n7,
.mx-n7 {
	margin-right: -2.8rem !important;
}

.mb-n7,
.my-n7 {
	margin-bottom: -2.8rem !important;
}

.ml-n7,
.mx-n7 {
	margin-left: -2.8rem !important;
}

.m-n8 {
	margin: -3.2rem !important;
}

.mt-n8,
.my-n8 {
	margin-top: -3.2rem !important;
}

.mr-n8,
.mx-n8 {
	margin-right: -3.2rem !important;
}

.mb-n8,
.my-n8 {
	margin-bottom: -3.2rem !important;
}

.ml-n8,
.mx-n8 {
	margin-left: -3.2rem !important;
}

.m-n9 {
	margin: -3.6rem !important;
}

.mt-n9,
.my-n9 {
	margin-top: -3.6rem !important;
}

.mr-n9,
.mx-n9 {
	margin-right: -3.6rem !important;
}

.mb-n9,
.my-n9 {
	margin-bottom: -3.6rem !important;
}

.ml-n9,
.mx-n9 {
	margin-left: -3.6rem !important;
}

.m-n10 {
	margin: -4rem !important;
}

.mt-n10,
.my-n10 {
	margin-top: -4rem !important;
}

.mr-n10,
.mx-n10 {
	margin-right: -4rem !important;
}

.mb-n10,
.my-n10 {
	margin-bottom: -4rem !important;
}

.ml-n10,
.mx-n10 {
	margin-left: -4rem !important;
}

.m-auto {
	margin: auto !important;
}

.mt-auto,
.my-auto {
	margin-top: auto !important;
}

.mr-auto,
.mx-auto {
	margin-right: auto !important;
}

.mb-auto,
.my-auto {
	margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
	margin-left: auto !important;
}

@media (min-width: 576px) {
	.m-sm-0 {
		margin: 0 !important;
	}

	.mt-sm-0,
	.my-sm-0 {
		margin-top: 0 !important;
	}

	.mr-sm-0,
	.mx-sm-0 {
		margin-right: 0 !important;
	}

	.mb-sm-0,
	.my-sm-0 {
		margin-bottom: 0 !important;
	}

	.ml-sm-0,
	.mx-sm-0 {
		margin-left: 0 !important;
	}

	.m-sm-1 {
		margin: 0.4rem !important;
	}

	.mt-sm-1,
	.my-sm-1 {
		margin-top: 0.4rem !important;
	}

	.mr-sm-1,
	.mx-sm-1 {
		margin-right: 0.4rem !important;
	}

	.mb-sm-1,
	.my-sm-1 {
		margin-bottom: 0.4rem !important;
	}

	.ml-sm-1,
	.mx-sm-1 {
		margin-left: 0.4rem !important;
	}

	.m-sm-2 {
		margin: 0.8rem !important;
	}

	.mt-sm-2,
	.my-sm-2 {
		margin-top: 0.8rem !important;
	}

	.mr-sm-2,
	.mx-sm-2 {
		margin-right: 0.8rem !important;
	}

	.mb-sm-2,
	.my-sm-2 {
		margin-bottom: 0.8rem !important;
	}

	.ml-sm-2,
	.mx-sm-2 {
		margin-left: 0.8rem !important;
	}

	.m-sm-3 {
		margin: 1.2rem !important;
	}

	.mt-sm-3,
	.my-sm-3 {
		margin-top: 1.2rem !important;
	}

	.mr-sm-3,
	.mx-sm-3 {
		margin-right: 1.2rem !important;
	}

	.mb-sm-3,
	.my-sm-3 {
		margin-bottom: 1.2rem !important;
	}

	.ml-sm-3,
	.mx-sm-3 {
		margin-left: 1.2rem !important;
	}

	.m-sm-4 {
		margin: 1.6rem !important;
	}

	.mt-sm-4,
	.my-sm-4 {
		margin-top: 1.6rem !important;
	}

	.mr-sm-4,
	.mx-sm-4 {
		margin-right: 1.6rem !important;
	}

	.mb-sm-4,
	.my-sm-4 {
		margin-bottom: 1.6rem !important;
	}

	.ml-sm-4,
	.mx-sm-4 {
		margin-left: 1.6rem !important;
	}

	.m-sm-5 {
		margin: 2rem !important;
	}

	.mt-sm-5,
	.my-sm-5 {
		margin-top: 2rem !important;
	}

	.mr-sm-5,
	.mx-sm-5 {
		margin-right: 2rem !important;
	}

	.mb-sm-5,
	.my-sm-5 {
		margin-bottom: 2rem !important;
	}

	.ml-sm-5,
	.mx-sm-5 {
		margin-left: 2rem !important;
	}

	.m-sm-6 {
		margin: 2.4rem !important;
	}

	.mt-sm-6,
	.my-sm-6 {
		margin-top: 2.4rem !important;
	}

	.mr-sm-6,
	.mx-sm-6 {
		margin-right: 2.4rem !important;
	}

	.mb-sm-6,
	.my-sm-6 {
		margin-bottom: 2.4rem !important;
	}

	.ml-sm-6,
	.mx-sm-6 {
		margin-left: 2.4rem !important;
	}

	.m-sm-7 {
		margin: 2.8rem !important;
	}

	.mt-sm-7,
	.my-sm-7 {
		margin-top: 2.8rem !important;
	}

	.mr-sm-7,
	.mx-sm-7 {
		margin-right: 2.8rem !important;
	}

	.mb-sm-7,
	.my-sm-7 {
		margin-bottom: 2.8rem !important;
	}

	.ml-sm-7,
	.mx-sm-7 {
		margin-left: 2.8rem !important;
	}

	.m-sm-8 {
		margin: 3.2rem !important;
	}

	.mt-sm-8,
	.my-sm-8 {
		margin-top: 3.2rem !important;
	}

	.mr-sm-8,
	.mx-sm-8 {
		margin-right: 3.2rem !important;
	}

	.mb-sm-8,
	.my-sm-8 {
		margin-bottom: 3.2rem !important;
	}

	.ml-sm-8,
	.mx-sm-8 {
		margin-left: 3.2rem !important;
	}

	.m-sm-9 {
		margin: 3.6rem !important;
	}

	.mt-sm-9,
	.my-sm-9 {
		margin-top: 3.6rem !important;
	}

	.mr-sm-9,
	.mx-sm-9 {
		margin-right: 3.6rem !important;
	}

	.mb-sm-9,
	.my-sm-9 {
		margin-bottom: 3.6rem !important;
	}

	.ml-sm-9,
	.mx-sm-9 {
		margin-left: 3.6rem !important;
	}

	.m-sm-10 {
		margin: 4rem !important;
	}

	.mt-sm-10,
	.my-sm-10 {
		margin-top: 4rem !important;
	}

	.mr-sm-10,
	.mx-sm-10 {
		margin-right: 4rem !important;
	}

	.mb-sm-10,
	.my-sm-10 {
		margin-bottom: 4rem !important;
	}

	.ml-sm-10,
	.mx-sm-10 {
		margin-left: 4rem !important;
	}

	.p-sm-0 {
		padding: 0 !important;
	}

	.pt-sm-0,
	.py-sm-0 {
		padding-top: 0 !important;
	}

	.pr-sm-0,
	.px-sm-0 {
		padding-right: 0 !important;
	}

	.pb-sm-0,
	.py-sm-0 {
		padding-bottom: 0 !important;
	}

	.pl-sm-0,
	.px-sm-0 {
		padding-left: 0 !important;
	}

	.p-sm-1 {
		padding: 0.4rem !important;
	}

	.pt-sm-1,
	.py-sm-1 {
		padding-top: 0.4rem !important;
	}

	.pr-sm-1,
	.px-sm-1 {
		padding-right: 0.4rem !important;
	}

	.pb-sm-1,
	.py-sm-1 {
		padding-bottom: 0.4rem !important;
	}

	.pl-sm-1,
	.px-sm-1 {
		padding-left: 0.4rem !important;
	}

	.p-sm-2 {
		padding: 0.8rem !important;
	}

	.pt-sm-2,
	.py-sm-2 {
		padding-top: 0.8rem !important;
	}

	.pr-sm-2,
	.px-sm-2 {
		padding-right: 0.8rem !important;
	}

	.pb-sm-2,
	.py-sm-2 {
		padding-bottom: 0.8rem !important;
	}

	.pl-sm-2,
	.px-sm-2 {
		padding-left: 0.8rem !important;
	}

	.p-sm-3 {
		padding: 1.2rem !important;
	}

	.pt-sm-3,
	.py-sm-3 {
		padding-top: 1.2rem !important;
	}

	.pr-sm-3,
	.px-sm-3 {
		padding-right: 1.2rem !important;
	}

	.pb-sm-3,
	.py-sm-3 {
		padding-bottom: 1.2rem !important;
	}

	.pl-sm-3,
	.px-sm-3 {
		padding-left: 1.2rem !important;
	}

	.p-sm-4 {
		padding: 1.6rem !important;
	}

	.pt-sm-4,
	.py-sm-4 {
		padding-top: 1.6rem !important;
	}

	.pr-sm-4,
	.px-sm-4 {
		padding-right: 1.6rem !important;
	}

	.pb-sm-4,
	.py-sm-4 {
		padding-bottom: 1.6rem !important;
	}

	.pl-sm-4,
	.px-sm-4 {
		padding-left: 1.6rem !important;
	}

	.p-sm-5 {
		padding: 2rem !important;
	}

	.pt-sm-5,
	.py-sm-5 {
		padding-top: 2rem !important;
	}

	.pr-sm-5,
	.px-sm-5 {
		padding-right: 2rem !important;
	}

	.pb-sm-5,
	.py-sm-5 {
		padding-bottom: 2rem !important;
	}

	.pl-sm-5,
	.px-sm-5 {
		padding-left: 2rem !important;
	}

	.p-sm-6 {
		padding: 2.4rem !important;
	}

	.pt-sm-6,
	.py-sm-6 {
		padding-top: 2.4rem !important;
	}

	.pr-sm-6,
	.px-sm-6 {
		padding-right: 2.4rem !important;
	}

	.pb-sm-6,
	.py-sm-6 {
		padding-bottom: 2.4rem !important;
	}

	.pl-sm-6,
	.px-sm-6 {
		padding-left: 2.4rem !important;
	}

	.p-sm-7 {
		padding: 2.8rem !important;
	}

	.pt-sm-7,
	.py-sm-7 {
		padding-top: 2.8rem !important;
	}

	.pr-sm-7,
	.px-sm-7 {
		padding-right: 2.8rem !important;
	}

	.pb-sm-7,
	.py-sm-7 {
		padding-bottom: 2.8rem !important;
	}

	.pl-sm-7,
	.px-sm-7 {
		padding-left: 2.8rem !important;
	}

	.p-sm-8 {
		padding: 3.2rem !important;
	}

	.pt-sm-8,
	.py-sm-8 {
		padding-top: 3.2rem !important;
	}

	.pr-sm-8,
	.px-sm-8 {
		padding-right: 3.2rem !important;
	}

	.pb-sm-8,
	.py-sm-8 {
		padding-bottom: 3.2rem !important;
	}

	.pl-sm-8,
	.px-sm-8 {
		padding-left: 3.2rem !important;
	}

	.p-sm-9 {
		padding: 3.6rem !important;
	}

	.pt-sm-9,
	.py-sm-9 {
		padding-top: 3.6rem !important;
	}

	.pr-sm-9,
	.px-sm-9 {
		padding-right: 3.6rem !important;
	}

	.pb-sm-9,
	.py-sm-9 {
		padding-bottom: 3.6rem !important;
	}

	.pl-sm-9,
	.px-sm-9 {
		padding-left: 3.6rem !important;
	}

	.p-sm-10 {
		padding: 4rem !important;
	}

	.pt-sm-10,
	.py-sm-10 {
		padding-top: 4rem !important;
	}

	.pr-sm-10,
	.px-sm-10 {
		padding-right: 4rem !important;
	}

	.pb-sm-10,
	.py-sm-10 {
		padding-bottom: 4rem !important;
	}

	.pl-sm-10,
	.px-sm-10 {
		padding-left: 4rem !important;
	}

	.m-sm-n1 {
		margin: -0.4rem !important;
	}

	.mt-sm-n1,
	.my-sm-n1 {
		margin-top: -0.4rem !important;
	}

	.mr-sm-n1,
	.mx-sm-n1 {
		margin-right: -0.4rem !important;
	}

	.mb-sm-n1,
	.my-sm-n1 {
		margin-bottom: -0.4rem !important;
	}

	.ml-sm-n1,
	.mx-sm-n1 {
		margin-left: -0.4rem !important;
	}

	.m-sm-n2 {
		margin: -0.8rem !important;
	}

	.mt-sm-n2,
	.my-sm-n2 {
		margin-top: -0.8rem !important;
	}

	.mr-sm-n2,
	.mx-sm-n2 {
		margin-right: -0.8rem !important;
	}

	.mb-sm-n2,
	.my-sm-n2 {
		margin-bottom: -0.8rem !important;
	}

	.ml-sm-n2,
	.mx-sm-n2 {
		margin-left: -0.8rem !important;
	}

	.m-sm-n3 {
		margin: -1.2rem !important;
	}

	.mt-sm-n3,
	.my-sm-n3 {
		margin-top: -1.2rem !important;
	}

	.mr-sm-n3,
	.mx-sm-n3 {
		margin-right: -1.2rem !important;
	}

	.mb-sm-n3,
	.my-sm-n3 {
		margin-bottom: -1.2rem !important;
	}

	.ml-sm-n3,
	.mx-sm-n3 {
		margin-left: -1.2rem !important;
	}

	.m-sm-n4 {
		margin: -1.6rem !important;
	}

	.mt-sm-n4,
	.my-sm-n4 {
		margin-top: -1.6rem !important;
	}

	.mr-sm-n4,
	.mx-sm-n4 {
		margin-right: -1.6rem !important;
	}

	.mb-sm-n4,
	.my-sm-n4 {
		margin-bottom: -1.6rem !important;
	}

	.ml-sm-n4,
	.mx-sm-n4 {
		margin-left: -1.6rem !important;
	}

	.m-sm-n5 {
		margin: -2rem !important;
	}

	.mt-sm-n5,
	.my-sm-n5 {
		margin-top: -2rem !important;
	}

	.mr-sm-n5,
	.mx-sm-n5 {
		margin-right: -2rem !important;
	}

	.mb-sm-n5,
	.my-sm-n5 {
		margin-bottom: -2rem !important;
	}

	.ml-sm-n5,
	.mx-sm-n5 {
		margin-left: -2rem !important;
	}

	.m-sm-n6 {
		margin: -2.4rem !important;
	}

	.mt-sm-n6,
	.my-sm-n6 {
		margin-top: -2.4rem !important;
	}

	.mr-sm-n6,
	.mx-sm-n6 {
		margin-right: -2.4rem !important;
	}

	.mb-sm-n6,
	.my-sm-n6 {
		margin-bottom: -2.4rem !important;
	}

	.ml-sm-n6,
	.mx-sm-n6 {
		margin-left: -2.4rem !important;
	}

	.m-sm-n7 {
		margin: -2.8rem !important;
	}

	.mt-sm-n7,
	.my-sm-n7 {
		margin-top: -2.8rem !important;
	}

	.mr-sm-n7,
	.mx-sm-n7 {
		margin-right: -2.8rem !important;
	}

	.mb-sm-n7,
	.my-sm-n7 {
		margin-bottom: -2.8rem !important;
	}

	.ml-sm-n7,
	.mx-sm-n7 {
		margin-left: -2.8rem !important;
	}

	.m-sm-n8 {
		margin: -3.2rem !important;
	}

	.mt-sm-n8,
	.my-sm-n8 {
		margin-top: -3.2rem !important;
	}

	.mr-sm-n8,
	.mx-sm-n8 {
		margin-right: -3.2rem !important;
	}

	.mb-sm-n8,
	.my-sm-n8 {
		margin-bottom: -3.2rem !important;
	}

	.ml-sm-n8,
	.mx-sm-n8 {
		margin-left: -3.2rem !important;
	}

	.m-sm-n9 {
		margin: -3.6rem !important;
	}

	.mt-sm-n9,
	.my-sm-n9 {
		margin-top: -3.6rem !important;
	}

	.mr-sm-n9,
	.mx-sm-n9 {
		margin-right: -3.6rem !important;
	}

	.mb-sm-n9,
	.my-sm-n9 {
		margin-bottom: -3.6rem !important;
	}

	.ml-sm-n9,
	.mx-sm-n9 {
		margin-left: -3.6rem !important;
	}

	.m-sm-n10 {
		margin: -4rem !important;
	}

	.mt-sm-n10,
	.my-sm-n10 {
		margin-top: -4rem !important;
	}

	.mr-sm-n10,
	.mx-sm-n10 {
		margin-right: -4rem !important;
	}

	.mb-sm-n10,
	.my-sm-n10 {
		margin-bottom: -4rem !important;
	}

	.ml-sm-n10,
	.mx-sm-n10 {
		margin-left: -4rem !important;
	}

	.m-sm-auto {
		margin: auto !important;
	}

	.mt-sm-auto,
	.my-sm-auto {
		margin-top: auto !important;
	}

	.mr-sm-auto,
	.mx-sm-auto {
		margin-right: auto !important;
	}

	.mb-sm-auto,
	.my-sm-auto {
		margin-bottom: auto !important;
	}

	.ml-sm-auto,
	.mx-sm-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 768px) {
	.m-md-0 {
		margin: 0 !important;
	}

	.mt-md-0,
	.my-md-0 {
		margin-top: 0 !important;
	}

	.mr-md-0,
	.mx-md-0 {
		margin-right: 0 !important;
	}

	.mb-md-0,
	.my-md-0 {
		margin-bottom: 0 !important;
	}

	.ml-md-0,
	.mx-md-0 {
		margin-left: 0 !important;
	}

	.m-md-1 {
		margin: 0.4rem !important;
	}

	.mt-md-1,
	.my-md-1 {
		margin-top: 0.4rem !important;
	}

	.mr-md-1,
	.mx-md-1 {
		margin-right: 0.4rem !important;
	}

	.mb-md-1,
	.my-md-1 {
		margin-bottom: 0.4rem !important;
	}

	.ml-md-1,
	.mx-md-1 {
		margin-left: 0.4rem !important;
	}

	.m-md-2 {
		margin: 0.8rem !important;
	}

	.mt-md-2,
	.my-md-2 {
		margin-top: 0.8rem !important;
	}

	.mr-md-2,
	.mx-md-2 {
		margin-right: 0.8rem !important;
	}

	.mb-md-2,
	.my-md-2 {
		margin-bottom: 0.8rem !important;
	}

	.ml-md-2,
	.mx-md-2 {
		margin-left: 0.8rem !important;
	}

	.m-md-3 {
		margin: 1.2rem !important;
	}

	.mt-md-3,
	.my-md-3 {
		margin-top: 1.2rem !important;
	}

	.mr-md-3,
	.mx-md-3 {
		margin-right: 1.2rem !important;
	}

	.mb-md-3,
	.my-md-3 {
		margin-bottom: 1.2rem !important;
	}

	.ml-md-3,
	.mx-md-3 {
		margin-left: 1.2rem !important;
	}

	.m-md-4 {
		margin: 1.6rem !important;
	}

	.mt-md-4,
	.my-md-4 {
		margin-top: 1.6rem !important;
	}

	.mr-md-4,
	.mx-md-4 {
		margin-right: 1.6rem !important;
	}

	.mb-md-4,
	.my-md-4 {
		margin-bottom: 1.6rem !important;
	}

	.ml-md-4,
	.mx-md-4 {
		margin-left: 1.6rem !important;
	}

	.m-md-5 {
		margin: 2rem !important;
	}

	.mt-md-5,
	.my-md-5 {
		margin-top: 2rem !important;
	}

	.mr-md-5,
	.mx-md-5 {
		margin-right: 2rem !important;
	}

	.mb-md-5,
	.my-md-5 {
		margin-bottom: 2rem !important;
	}

	.ml-md-5,
	.mx-md-5 {
		margin-left: 2rem !important;
	}

	.m-md-6 {
		margin: 2.4rem !important;
	}

	.mt-md-6,
	.my-md-6 {
		margin-top: 2.4rem !important;
	}

	.mr-md-6,
	.mx-md-6 {
		margin-right: 2.4rem !important;
	}

	.mb-md-6,
	.my-md-6 {
		margin-bottom: 2.4rem !important;
	}

	.ml-md-6,
	.mx-md-6 {
		margin-left: 2.4rem !important;
	}

	.m-md-7 {
		margin: 2.8rem !important;
	}

	.mt-md-7,
	.my-md-7 {
		margin-top: 2.8rem !important;
	}

	.mr-md-7,
	.mx-md-7 {
		margin-right: 2.8rem !important;
	}

	.mb-md-7,
	.my-md-7 {
		margin-bottom: 2.8rem !important;
	}

	.ml-md-7,
	.mx-md-7 {
		margin-left: 2.8rem !important;
	}

	.m-md-8 {
		margin: 3.2rem !important;
	}

	.mt-md-8,
	.my-md-8 {
		margin-top: 3.2rem !important;
	}

	.mr-md-8,
	.mx-md-8 {
		margin-right: 3.2rem !important;
	}

	.mb-md-8,
	.my-md-8 {
		margin-bottom: 3.2rem !important;
	}

	.ml-md-8,
	.mx-md-8 {
		margin-left: 3.2rem !important;
	}

	.m-md-9 {
		margin: 3.6rem !important;
	}

	.mt-md-9,
	.my-md-9 {
		margin-top: 3.6rem !important;
	}

	.mr-md-9,
	.mx-md-9 {
		margin-right: 3.6rem !important;
	}

	.mb-md-9,
	.my-md-9 {
		margin-bottom: 3.6rem !important;
	}

	.ml-md-9,
	.mx-md-9 {
		margin-left: 3.6rem !important;
	}

	.m-md-10 {
		margin: 4rem !important;
	}

	.mt-md-10,
	.my-md-10 {
		margin-top: 4rem !important;
	}

	.mr-md-10,
	.mx-md-10 {
		margin-right: 4rem !important;
	}

	.mb-md-10,
	.my-md-10 {
		margin-bottom: 4rem !important;
	}

	.ml-md-10,
	.mx-md-10 {
		margin-left: 4rem !important;
	}

	.p-md-0 {
		padding: 0 !important;
	}

	.pt-md-0,
	.py-md-0 {
		padding-top: 0 !important;
	}

	.pr-md-0,
	.px-md-0 {
		padding-right: 0 !important;
	}

	.pb-md-0,
	.py-md-0 {
		padding-bottom: 0 !important;
	}

	.pl-md-0,
	.px-md-0 {
		padding-left: 0 !important;
	}

	.p-md-1 {
		padding: 0.4rem !important;
	}

	.pt-md-1,
	.py-md-1 {
		padding-top: 0.4rem !important;
	}

	.pr-md-1,
	.px-md-1 {
		padding-right: 0.4rem !important;
	}

	.pb-md-1,
	.py-md-1 {
		padding-bottom: 0.4rem !important;
	}

	.pl-md-1,
	.px-md-1 {
		padding-left: 0.4rem !important;
	}

	.p-md-2 {
		padding: 0.8rem !important;
	}

	.pt-md-2,
	.py-md-2 {
		padding-top: 0.8rem !important;
	}

	.pr-md-2,
	.px-md-2 {
		padding-right: 0.8rem !important;
	}

	.pb-md-2,
	.py-md-2 {
		padding-bottom: 0.8rem !important;
	}

	.pl-md-2,
	.px-md-2 {
		padding-left: 0.8rem !important;
	}

	.p-md-3 {
		padding: 1.2rem !important;
	}

	.pt-md-3,
	.py-md-3 {
		padding-top: 1.2rem !important;
	}

	.pr-md-3,
	.px-md-3 {
		padding-right: 1.2rem !important;
	}

	.pb-md-3,
	.py-md-3 {
		padding-bottom: 1.2rem !important;
	}

	.pl-md-3,
	.px-md-3 {
		padding-left: 1.2rem !important;
	}

	.p-md-4 {
		padding: 1.6rem !important;
	}

	.pt-md-4,
	.py-md-4 {
		padding-top: 1.6rem !important;
	}

	.pr-md-4,
	.px-md-4 {
		padding-right: 1.6rem !important;
	}

	.pb-md-4,
	.py-md-4 {
		padding-bottom: 1.6rem !important;
	}

	.pl-md-4,
	.px-md-4 {
		padding-left: 1.6rem !important;
	}

	.p-md-5 {
		padding: 2rem !important;
	}

	.pt-md-5,
	.py-md-5 {
		padding-top: 2rem !important;
	}

	.pr-md-5,
	.px-md-5 {
		padding-right: 2rem !important;
	}

	.pb-md-5,
	.py-md-5 {
		padding-bottom: 2rem !important;
	}

	.pl-md-5,
	.px-md-5 {
		padding-left: 2rem !important;
	}

	.p-md-6 {
		padding: 2.4rem !important;
	}

	.pt-md-6,
	.py-md-6 {
		padding-top: 2.4rem !important;
	}

	.pr-md-6,
	.px-md-6 {
		padding-right: 2.4rem !important;
	}

	.pb-md-6,
	.py-md-6 {
		padding-bottom: 2.4rem !important;
	}

	.pl-md-6,
	.px-md-6 {
		padding-left: 2.4rem !important;
	}

	.p-md-7 {
		padding: 2.8rem !important;
	}

	.pt-md-7,
	.py-md-7 {
		padding-top: 2.8rem !important;
	}

	.pr-md-7,
	.px-md-7 {
		padding-right: 2.8rem !important;
	}

	.pb-md-7,
	.py-md-7 {
		padding-bottom: 2.8rem !important;
	}

	.pl-md-7,
	.px-md-7 {
		padding-left: 2.8rem !important;
	}

	.p-md-8 {
		padding: 3.2rem !important;
	}

	.pt-md-8,
	.py-md-8 {
		padding-top: 3.2rem !important;
	}

	.pr-md-8,
	.px-md-8 {
		padding-right: 3.2rem !important;
	}

	.pb-md-8,
	.py-md-8 {
		padding-bottom: 3.2rem !important;
	}

	.pl-md-8,
	.px-md-8 {
		padding-left: 3.2rem !important;
	}

	.p-md-9 {
		padding: 3.6rem !important;
	}

	.pt-md-9,
	.py-md-9 {
		padding-top: 3.6rem !important;
	}

	.pr-md-9,
	.px-md-9 {
		padding-right: 3.6rem !important;
	}

	.pb-md-9,
	.py-md-9 {
		padding-bottom: 3.6rem !important;
	}

	.pl-md-9,
	.px-md-9 {
		padding-left: 3.6rem !important;
	}

	.p-md-10 {
		padding: 4rem !important;
	}

	.pt-md-10,
	.py-md-10 {
		padding-top: 4rem !important;
	}

	.pr-md-10,
	.px-md-10 {
		padding-right: 4rem !important;
	}

	.pb-md-10,
	.py-md-10 {
		padding-bottom: 4rem !important;
	}

	.pl-md-10,
	.px-md-10 {
		padding-left: 4rem !important;
	}

	.m-md-n1 {
		margin: -0.4rem !important;
	}

	.mt-md-n1,
	.my-md-n1 {
		margin-top: -0.4rem !important;
	}

	.mr-md-n1,
	.mx-md-n1 {
		margin-right: -0.4rem !important;
	}

	.mb-md-n1,
	.my-md-n1 {
		margin-bottom: -0.4rem !important;
	}

	.ml-md-n1,
	.mx-md-n1 {
		margin-left: -0.4rem !important;
	}

	.m-md-n2 {
		margin: -0.8rem !important;
	}

	.mt-md-n2,
	.my-md-n2 {
		margin-top: -0.8rem !important;
	}

	.mr-md-n2,
	.mx-md-n2 {
		margin-right: -0.8rem !important;
	}

	.mb-md-n2,
	.my-md-n2 {
		margin-bottom: -0.8rem !important;
	}

	.ml-md-n2,
	.mx-md-n2 {
		margin-left: -0.8rem !important;
	}

	.m-md-n3 {
		margin: -1.2rem !important;
	}

	.mt-md-n3,
	.my-md-n3 {
		margin-top: -1.2rem !important;
	}

	.mr-md-n3,
	.mx-md-n3 {
		margin-right: -1.2rem !important;
	}

	.mb-md-n3,
	.my-md-n3 {
		margin-bottom: -1.2rem !important;
	}

	.ml-md-n3,
	.mx-md-n3 {
		margin-left: -1.2rem !important;
	}

	.m-md-n4 {
		margin: -1.6rem !important;
	}

	.mt-md-n4,
	.my-md-n4 {
		margin-top: -1.6rem !important;
	}

	.mr-md-n4,
	.mx-md-n4 {
		margin-right: -1.6rem !important;
	}

	.mb-md-n4,
	.my-md-n4 {
		margin-bottom: -1.6rem !important;
	}

	.ml-md-n4,
	.mx-md-n4 {
		margin-left: -1.6rem !important;
	}

	.m-md-n5 {
		margin: -2rem !important;
	}

	.mt-md-n5,
	.my-md-n5 {
		margin-top: -2rem !important;
	}

	.mr-md-n5,
	.mx-md-n5 {
		margin-right: -2rem !important;
	}

	.mb-md-n5,
	.my-md-n5 {
		margin-bottom: -2rem !important;
	}

	.ml-md-n5,
	.mx-md-n5 {
		margin-left: -2rem !important;
	}

	.m-md-n6 {
		margin: -2.4rem !important;
	}

	.mt-md-n6,
	.my-md-n6 {
		margin-top: -2.4rem !important;
	}

	.mr-md-n6,
	.mx-md-n6 {
		margin-right: -2.4rem !important;
	}

	.mb-md-n6,
	.my-md-n6 {
		margin-bottom: -2.4rem !important;
	}

	.ml-md-n6,
	.mx-md-n6 {
		margin-left: -2.4rem !important;
	}

	.m-md-n7 {
		margin: -2.8rem !important;
	}

	.mt-md-n7,
	.my-md-n7 {
		margin-top: -2.8rem !important;
	}

	.mr-md-n7,
	.mx-md-n7 {
		margin-right: -2.8rem !important;
	}

	.mb-md-n7,
	.my-md-n7 {
		margin-bottom: -2.8rem !important;
	}

	.ml-md-n7,
	.mx-md-n7 {
		margin-left: -2.8rem !important;
	}

	.m-md-n8 {
		margin: -3.2rem !important;
	}

	.mt-md-n8,
	.my-md-n8 {
		margin-top: -3.2rem !important;
	}

	.mr-md-n8,
	.mx-md-n8 {
		margin-right: -3.2rem !important;
	}

	.mb-md-n8,
	.my-md-n8 {
		margin-bottom: -3.2rem !important;
	}

	.ml-md-n8,
	.mx-md-n8 {
		margin-left: -3.2rem !important;
	}

	.m-md-n9 {
		margin: -3.6rem !important;
	}

	.mt-md-n9,
	.my-md-n9 {
		margin-top: -3.6rem !important;
	}

	.mr-md-n9,
	.mx-md-n9 {
		margin-right: -3.6rem !important;
	}

	.mb-md-n9,
	.my-md-n9 {
		margin-bottom: -3.6rem !important;
	}

	.ml-md-n9,
	.mx-md-n9 {
		margin-left: -3.6rem !important;
	}

	.m-md-n10 {
		margin: -4rem !important;
	}

	.mt-md-n10,
	.my-md-n10 {
		margin-top: -4rem !important;
	}

	.mr-md-n10,
	.mx-md-n10 {
		margin-right: -4rem !important;
	}

	.mb-md-n10,
	.my-md-n10 {
		margin-bottom: -4rem !important;
	}

	.ml-md-n10,
	.mx-md-n10 {
		margin-left: -4rem !important;
	}

	.m-md-auto {
		margin: auto !important;
	}

	.mt-md-auto,
	.my-md-auto {
		margin-top: auto !important;
	}

	.mr-md-auto,
	.mx-md-auto {
		margin-right: auto !important;
	}

	.mb-md-auto,
	.my-md-auto {
		margin-bottom: auto !important;
	}

	.ml-md-auto,
	.mx-md-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 992px) {
	.m-lg-0 {
		margin: 0 !important;
	}

	.mt-lg-0,
	.my-lg-0 {
		margin-top: 0 !important;
	}

	.mr-lg-0,
	.mx-lg-0 {
		margin-right: 0 !important;
	}

	.mb-lg-0,
	.my-lg-0 {
		margin-bottom: 0 !important;
	}

	.ml-lg-0,
	.mx-lg-0 {
		margin-left: 0 !important;
	}

	.m-lg-1 {
		margin: 0.4rem !important;
	}

	.mt-lg-1,
	.my-lg-1 {
		margin-top: 0.4rem !important;
	}

	.mr-lg-1,
	.mx-lg-1 {
		margin-right: 0.4rem !important;
	}

	.mb-lg-1,
	.my-lg-1 {
		margin-bottom: 0.4rem !important;
	}

	.ml-lg-1,
	.mx-lg-1 {
		margin-left: 0.4rem !important;
	}

	.m-lg-2 {
		margin: 0.8rem !important;
	}

	.mt-lg-2,
	.my-lg-2 {
		margin-top: 0.8rem !important;
	}

	.mr-lg-2,
	.mx-lg-2 {
		margin-right: 0.8rem !important;
	}

	.mb-lg-2,
	.my-lg-2 {
		margin-bottom: 0.8rem !important;
	}

	.ml-lg-2,
	.mx-lg-2 {
		margin-left: 0.8rem !important;
	}

	.m-lg-3 {
		margin: 1.2rem !important;
	}

	.mt-lg-3,
	.my-lg-3 {
		margin-top: 1.2rem !important;
	}

	.mr-lg-3,
	.mx-lg-3 {
		margin-right: 1.2rem !important;
	}

	.mb-lg-3,
	.my-lg-3 {
		margin-bottom: 1.2rem !important;
	}

	.ml-lg-3,
	.mx-lg-3 {
		margin-left: 1.2rem !important;
	}

	.m-lg-4 {
		margin: 1.6rem !important;
	}

	.mt-lg-4,
	.my-lg-4 {
		margin-top: 1.6rem !important;
	}

	.mr-lg-4,
	.mx-lg-4 {
		margin-right: 1.6rem !important;
	}

	.mb-lg-4,
	.my-lg-4 {
		margin-bottom: 1.6rem !important;
	}

	.ml-lg-4,
	.mx-lg-4 {
		margin-left: 1.6rem !important;
	}

	.m-lg-5 {
		margin: 2rem !important;
	}

	.mt-lg-5,
	.my-lg-5 {
		margin-top: 2rem !important;
	}

	.mr-lg-5,
	.mx-lg-5 {
		margin-right: 2rem !important;
	}

	.mb-lg-5,
	.my-lg-5 {
		margin-bottom: 2rem !important;
	}

	.ml-lg-5,
	.mx-lg-5 {
		margin-left: 2rem !important;
	}

	.m-lg-6 {
		margin: 2.4rem !important;
	}

	.mt-lg-6,
	.my-lg-6 {
		margin-top: 2.4rem !important;
	}

	.mr-lg-6,
	.mx-lg-6 {
		margin-right: 2.4rem !important;
	}

	.mb-lg-6,
	.my-lg-6 {
		margin-bottom: 2.4rem !important;
	}

	.ml-lg-6,
	.mx-lg-6 {
		margin-left: 2.4rem !important;
	}

	.m-lg-7 {
		margin: 2.8rem !important;
	}

	.mt-lg-7,
	.my-lg-7 {
		margin-top: 2.8rem !important;
	}

	.mr-lg-7,
	.mx-lg-7 {
		margin-right: 2.8rem !important;
	}

	.mb-lg-7,
	.my-lg-7 {
		margin-bottom: 2.8rem !important;
	}

	.ml-lg-7,
	.mx-lg-7 {
		margin-left: 2.8rem !important;
	}

	.m-lg-8 {
		margin: 3.2rem !important;
	}

	.mt-lg-8,
	.my-lg-8 {
		margin-top: 3.2rem !important;
	}

	.mr-lg-8,
	.mx-lg-8 {
		margin-right: 3.2rem !important;
	}

	.mb-lg-8,
	.my-lg-8 {
		margin-bottom: 3.2rem !important;
	}

	.ml-lg-8,
	.mx-lg-8 {
		margin-left: 3.2rem !important;
	}

	.m-lg-9 {
		margin: 3.6rem !important;
	}

	.mt-lg-9,
	.my-lg-9 {
		margin-top: 3.6rem !important;
	}

	.mr-lg-9,
	.mx-lg-9 {
		margin-right: 3.6rem !important;
	}

	.mb-lg-9,
	.my-lg-9 {
		margin-bottom: 3.6rem !important;
	}

	.ml-lg-9,
	.mx-lg-9 {
		margin-left: 3.6rem !important;
	}

	.m-lg-10 {
		margin: 4rem !important;
	}

	.mt-lg-10,
	.my-lg-10 {
		margin-top: 4rem !important;
	}

	.mr-lg-10,
	.mx-lg-10 {
		margin-right: 4rem !important;
	}

	.mb-lg-10,
	.my-lg-10 {
		margin-bottom: 4rem !important;
	}

	.ml-lg-10,
	.mx-lg-10 {
		margin-left: 4rem !important;
	}

	.p-lg-0 {
		padding: 0 !important;
	}

	.pt-lg-0,
	.py-lg-0 {
		padding-top: 0 !important;
	}

	.pr-lg-0,
	.px-lg-0 {
		padding-right: 0 !important;
	}

	.pb-lg-0,
	.py-lg-0 {
		padding-bottom: 0 !important;
	}

	.pl-lg-0,
	.px-lg-0 {
		padding-left: 0 !important;
	}

	.p-lg-1 {
		padding: 0.4rem !important;
	}

	.pt-lg-1,
	.py-lg-1 {
		padding-top: 0.4rem !important;
	}

	.pr-lg-1,
	.px-lg-1 {
		padding-right: 0.4rem !important;
	}

	.pb-lg-1,
	.py-lg-1 {
		padding-bottom: 0.4rem !important;
	}

	.pl-lg-1,
	.px-lg-1 {
		padding-left: 0.4rem !important;
	}

	.p-lg-2 {
		padding: 0.8rem !important;
	}

	.pt-lg-2,
	.py-lg-2 {
		padding-top: 0.8rem !important;
	}

	.pr-lg-2,
	.px-lg-2 {
		padding-right: 0.8rem !important;
	}

	.pb-lg-2,
	.py-lg-2 {
		padding-bottom: 0.8rem !important;
	}

	.pl-lg-2,
	.px-lg-2 {
		padding-left: 0.8rem !important;
	}

	.p-lg-3 {
		padding: 1.2rem !important;
	}

	.pt-lg-3,
	.py-lg-3 {
		padding-top: 1.2rem !important;
	}

	.pr-lg-3,
	.px-lg-3 {
		padding-right: 1.2rem !important;
	}

	.pb-lg-3,
	.py-lg-3 {
		padding-bottom: 1.2rem !important;
	}

	.pl-lg-3,
	.px-lg-3 {
		padding-left: 1.2rem !important;
	}

	.p-lg-4 {
		padding: 1.6rem !important;
	}

	.pt-lg-4,
	.py-lg-4 {
		padding-top: 1.6rem !important;
	}

	.pr-lg-4,
	.px-lg-4 {
		padding-right: 1.6rem !important;
	}

	.pb-lg-4,
	.py-lg-4 {
		padding-bottom: 1.6rem !important;
	}

	.pl-lg-4,
	.px-lg-4 {
		padding-left: 1.6rem !important;
	}

	.p-lg-5 {
		padding: 2rem !important;
	}

	.pt-lg-5,
	.py-lg-5 {
		padding-top: 2rem !important;
	}

	.pr-lg-5,
	.px-lg-5 {
		padding-right: 2rem !important;
	}

	.pb-lg-5,
	.py-lg-5 {
		padding-bottom: 2rem !important;
	}

	.pl-lg-5,
	.px-lg-5 {
		padding-left: 2rem !important;
	}

	.p-lg-6 {
		padding: 2.4rem !important;
	}

	.pt-lg-6,
	.py-lg-6 {
		padding-top: 2.4rem !important;
	}

	.pr-lg-6,
	.px-lg-6 {
		padding-right: 2.4rem !important;
	}

	.pb-lg-6,
	.py-lg-6 {
		padding-bottom: 2.4rem !important;
	}

	.pl-lg-6,
	.px-lg-6 {
		padding-left: 2.4rem !important;
	}

	.p-lg-7 {
		padding: 2.8rem !important;
	}

	.pt-lg-7,
	.py-lg-7 {
		padding-top: 2.8rem !important;
	}

	.pr-lg-7,
	.px-lg-7 {
		padding-right: 2.8rem !important;
	}

	.pb-lg-7,
	.py-lg-7 {
		padding-bottom: 2.8rem !important;
	}

	.pl-lg-7,
	.px-lg-7 {
		padding-left: 2.8rem !important;
	}

	.p-lg-8 {
		padding: 3.2rem !important;
	}

	.pt-lg-8,
	.py-lg-8 {
		padding-top: 3.2rem !important;
	}

	.pr-lg-8,
	.px-lg-8 {
		padding-right: 3.2rem !important;
	}

	.pb-lg-8,
	.py-lg-8 {
		padding-bottom: 3.2rem !important;
	}

	.pl-lg-8,
	.px-lg-8 {
		padding-left: 3.2rem !important;
	}

	.p-lg-9 {
		padding: 3.6rem !important;
	}

	.pt-lg-9,
	.py-lg-9 {
		padding-top: 3.6rem !important;
	}

	.pr-lg-9,
	.px-lg-9 {
		padding-right: 3.6rem !important;
	}

	.pb-lg-9,
	.py-lg-9 {
		padding-bottom: 3.6rem !important;
	}

	.pl-lg-9,
	.px-lg-9 {
		padding-left: 3.6rem !important;
	}

	.p-lg-10 {
		padding: 4rem !important;
	}

	.pt-lg-10,
	.py-lg-10 {
		padding-top: 4rem !important;
	}

	.pr-lg-10,
	.px-lg-10 {
		padding-right: 4rem !important;
	}

	.pb-lg-10,
	.py-lg-10 {
		padding-bottom: 4rem !important;
	}

	.pl-lg-10,
	.px-lg-10 {
		padding-left: 4rem !important;
	}

	.m-lg-n1 {
		margin: -0.4rem !important;
	}

	.mt-lg-n1,
	.my-lg-n1 {
		margin-top: -0.4rem !important;
	}

	.mr-lg-n1,
	.mx-lg-n1 {
		margin-right: -0.4rem !important;
	}

	.mb-lg-n1,
	.my-lg-n1 {
		margin-bottom: -0.4rem !important;
	}

	.ml-lg-n1,
	.mx-lg-n1 {
		margin-left: -0.4rem !important;
	}

	.m-lg-n2 {
		margin: -0.8rem !important;
	}

	.mt-lg-n2,
	.my-lg-n2 {
		margin-top: -0.8rem !important;
	}

	.mr-lg-n2,
	.mx-lg-n2 {
		margin-right: -0.8rem !important;
	}

	.mb-lg-n2,
	.my-lg-n2 {
		margin-bottom: -0.8rem !important;
	}

	.ml-lg-n2,
	.mx-lg-n2 {
		margin-left: -0.8rem !important;
	}

	.m-lg-n3 {
		margin: -1.2rem !important;
	}

	.mt-lg-n3,
	.my-lg-n3 {
		margin-top: -1.2rem !important;
	}

	.mr-lg-n3,
	.mx-lg-n3 {
		margin-right: -1.2rem !important;
	}

	.mb-lg-n3,
	.my-lg-n3 {
		margin-bottom: -1.2rem !important;
	}

	.ml-lg-n3,
	.mx-lg-n3 {
		margin-left: -1.2rem !important;
	}

	.m-lg-n4 {
		margin: -1.6rem !important;
	}

	.mt-lg-n4,
	.my-lg-n4 {
		margin-top: -1.6rem !important;
	}

	.mr-lg-n4,
	.mx-lg-n4 {
		margin-right: -1.6rem !important;
	}

	.mb-lg-n4,
	.my-lg-n4 {
		margin-bottom: -1.6rem !important;
	}

	.ml-lg-n4,
	.mx-lg-n4 {
		margin-left: -1.6rem !important;
	}

	.m-lg-n5 {
		margin: -2rem !important;
	}

	.mt-lg-n5,
	.my-lg-n5 {
		margin-top: -2rem !important;
	}

	.mr-lg-n5,
	.mx-lg-n5 {
		margin-right: -2rem !important;
	}

	.mb-lg-n5,
	.my-lg-n5 {
		margin-bottom: -2rem !important;
	}

	.ml-lg-n5,
	.mx-lg-n5 {
		margin-left: -2rem !important;
	}

	.m-lg-n6 {
		margin: -2.4rem !important;
	}

	.mt-lg-n6,
	.my-lg-n6 {
		margin-top: -2.4rem !important;
	}

	.mr-lg-n6,
	.mx-lg-n6 {
		margin-right: -2.4rem !important;
	}

	.mb-lg-n6,
	.my-lg-n6 {
		margin-bottom: -2.4rem !important;
	}

	.ml-lg-n6,
	.mx-lg-n6 {
		margin-left: -2.4rem !important;
	}

	.m-lg-n7 {
		margin: -2.8rem !important;
	}

	.mt-lg-n7,
	.my-lg-n7 {
		margin-top: -2.8rem !important;
	}

	.mr-lg-n7,
	.mx-lg-n7 {
		margin-right: -2.8rem !important;
	}

	.mb-lg-n7,
	.my-lg-n7 {
		margin-bottom: -2.8rem !important;
	}

	.ml-lg-n7,
	.mx-lg-n7 {
		margin-left: -2.8rem !important;
	}

	.m-lg-n8 {
		margin: -3.2rem !important;
	}

	.mt-lg-n8,
	.my-lg-n8 {
		margin-top: -3.2rem !important;
	}

	.mr-lg-n8,
	.mx-lg-n8 {
		margin-right: -3.2rem !important;
	}

	.mb-lg-n8,
	.my-lg-n8 {
		margin-bottom: -3.2rem !important;
	}

	.ml-lg-n8,
	.mx-lg-n8 {
		margin-left: -3.2rem !important;
	}

	.m-lg-n9 {
		margin: -3.6rem !important;
	}

	.mt-lg-n9,
	.my-lg-n9 {
		margin-top: -3.6rem !important;
	}

	.mr-lg-n9,
	.mx-lg-n9 {
		margin-right: -3.6rem !important;
	}

	.mb-lg-n9,
	.my-lg-n9 {
		margin-bottom: -3.6rem !important;
	}

	.ml-lg-n9,
	.mx-lg-n9 {
		margin-left: -3.6rem !important;
	}

	.m-lg-n10 {
		margin: -4rem !important;
	}

	.mt-lg-n10,
	.my-lg-n10 {
		margin-top: -4rem !important;
	}

	.mr-lg-n10,
	.mx-lg-n10 {
		margin-right: -4rem !important;
	}

	.mb-lg-n10,
	.my-lg-n10 {
		margin-bottom: -4rem !important;
	}

	.ml-lg-n10,
	.mx-lg-n10 {
		margin-left: -4rem !important;
	}

	.m-lg-auto {
		margin: auto !important;
	}

	.mt-lg-auto,
	.my-lg-auto {
		margin-top: auto !important;
	}

	.mr-lg-auto,
	.mx-lg-auto {
		margin-right: auto !important;
	}

	.mb-lg-auto,
	.my-lg-auto {
		margin-bottom: auto !important;
	}

	.ml-lg-auto,
	.mx-lg-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 1200px) {
	.m-xl-0 {
		margin: 0 !important;
	}

	.mt-xl-0,
	.my-xl-0 {
		margin-top: 0 !important;
	}

	.mr-xl-0,
	.mx-xl-0 {
		margin-right: 0 !important;
	}

	.mb-xl-0,
	.my-xl-0 {
		margin-bottom: 0 !important;
	}

	.ml-xl-0,
	.mx-xl-0 {
		margin-left: 0 !important;
	}

	.m-xl-1 {
		margin: 0.4rem !important;
	}

	.mt-xl-1,
	.my-xl-1 {
		margin-top: 0.4rem !important;
	}

	.mr-xl-1,
	.mx-xl-1 {
		margin-right: 0.4rem !important;
	}

	.mb-xl-1,
	.my-xl-1 {
		margin-bottom: 0.4rem !important;
	}

	.ml-xl-1,
	.mx-xl-1 {
		margin-left: 0.4rem !important;
	}

	.m-xl-2 {
		margin: 0.8rem !important;
	}

	.mt-xl-2,
	.my-xl-2 {
		margin-top: 0.8rem !important;
	}

	.mr-xl-2,
	.mx-xl-2 {
		margin-right: 0.8rem !important;
	}

	.mb-xl-2,
	.my-xl-2 {
		margin-bottom: 0.8rem !important;
	}

	.ml-xl-2,
	.mx-xl-2 {
		margin-left: 0.8rem !important;
	}

	.m-xl-3 {
		margin: 1.2rem !important;
	}

	.mt-xl-3,
	.my-xl-3 {
		margin-top: 1.2rem !important;
	}

	.mr-xl-3,
	.mx-xl-3 {
		margin-right: 1.2rem !important;
	}

	.mb-xl-3,
	.my-xl-3 {
		margin-bottom: 1.2rem !important;
	}

	.ml-xl-3,
	.mx-xl-3 {
		margin-left: 1.2rem !important;
	}

	.m-xl-4 {
		margin: 1.6rem !important;
	}

	.mt-xl-4,
	.my-xl-4 {
		margin-top: 1.6rem !important;
	}

	.mr-xl-4,
	.mx-xl-4 {
		margin-right: 1.6rem !important;
	}

	.mb-xl-4,
	.my-xl-4 {
		margin-bottom: 1.6rem !important;
	}

	.ml-xl-4,
	.mx-xl-4 {
		margin-left: 1.6rem !important;
	}

	.m-xl-5 {
		margin: 2rem !important;
	}

	.mt-xl-5,
	.my-xl-5 {
		margin-top: 2rem !important;
	}

	.mr-xl-5,
	.mx-xl-5 {
		margin-right: 2rem !important;
	}

	.mb-xl-5,
	.my-xl-5 {
		margin-bottom: 2rem !important;
	}

	.ml-xl-5,
	.mx-xl-5 {
		margin-left: 2rem !important;
	}

	.m-xl-6 {
		margin: 2.4rem !important;
	}

	.mt-xl-6,
	.my-xl-6 {
		margin-top: 2.4rem !important;
	}

	.mr-xl-6,
	.mx-xl-6 {
		margin-right: 2.4rem !important;
	}

	.mb-xl-6,
	.my-xl-6 {
		margin-bottom: 2.4rem !important;
	}

	.ml-xl-6,
	.mx-xl-6 {
		margin-left: 2.4rem !important;
	}

	.m-xl-7 {
		margin: 2.8rem !important;
	}

	.mt-xl-7,
	.my-xl-7 {
		margin-top: 2.8rem !important;
	}

	.mr-xl-7,
	.mx-xl-7 {
		margin-right: 2.8rem !important;
	}

	.mb-xl-7,
	.my-xl-7 {
		margin-bottom: 2.8rem !important;
	}

	.ml-xl-7,
	.mx-xl-7 {
		margin-left: 2.8rem !important;
	}

	.m-xl-8 {
		margin: 3.2rem !important;
	}

	.mt-xl-8,
	.my-xl-8 {
		margin-top: 3.2rem !important;
	}

	.mr-xl-8,
	.mx-xl-8 {
		margin-right: 3.2rem !important;
	}

	.mb-xl-8,
	.my-xl-8 {
		margin-bottom: 3.2rem !important;
	}

	.ml-xl-8,
	.mx-xl-8 {
		margin-left: 3.2rem !important;
	}

	.m-xl-9 {
		margin: 3.6rem !important;
	}

	.mt-xl-9,
	.my-xl-9 {
		margin-top: 3.6rem !important;
	}

	.mr-xl-9,
	.mx-xl-9 {
		margin-right: 3.6rem !important;
	}

	.mb-xl-9,
	.my-xl-9 {
		margin-bottom: 3.6rem !important;
	}

	.ml-xl-9,
	.mx-xl-9 {
		margin-left: 3.6rem !important;
	}

	.m-xl-10 {
		margin: 4rem !important;
	}

	.mt-xl-10,
	.my-xl-10 {
		margin-top: 4rem !important;
	}

	.mr-xl-10,
	.mx-xl-10 {
		margin-right: 4rem !important;
	}

	.mb-xl-10,
	.my-xl-10 {
		margin-bottom: 4rem !important;
	}

	.ml-xl-10,
	.mx-xl-10 {
		margin-left: 4rem !important;
	}

	.p-xl-0 {
		padding: 0 !important;
	}

	.pt-xl-0,
	.py-xl-0 {
		padding-top: 0 !important;
	}

	.pr-xl-0,
	.px-xl-0 {
		padding-right: 0 !important;
	}

	.pb-xl-0,
	.py-xl-0 {
		padding-bottom: 0 !important;
	}

	.pl-xl-0,
	.px-xl-0 {
		padding-left: 0 !important;
	}

	.p-xl-1 {
		padding: 0.4rem !important;
	}

	.pt-xl-1,
	.py-xl-1 {
		padding-top: 0.4rem !important;
	}

	.pr-xl-1,
	.px-xl-1 {
		padding-right: 0.4rem !important;
	}

	.pb-xl-1,
	.py-xl-1 {
		padding-bottom: 0.4rem !important;
	}

	.pl-xl-1,
	.px-xl-1 {
		padding-left: 0.4rem !important;
	}

	.p-xl-2 {
		padding: 0.8rem !important;
	}

	.pt-xl-2,
	.py-xl-2 {
		padding-top: 0.8rem !important;
	}

	.pr-xl-2,
	.px-xl-2 {
		padding-right: 0.8rem !important;
	}

	.pb-xl-2,
	.py-xl-2 {
		padding-bottom: 0.8rem !important;
	}

	.pl-xl-2,
	.px-xl-2 {
		padding-left: 0.8rem !important;
	}

	.p-xl-3 {
		padding: 1.2rem !important;
	}

	.pt-xl-3,
	.py-xl-3 {
		padding-top: 1.2rem !important;
	}

	.pr-xl-3,
	.px-xl-3 {
		padding-right: 1.2rem !important;
	}

	.pb-xl-3,
	.py-xl-3 {
		padding-bottom: 1.2rem !important;
	}

	.pl-xl-3,
	.px-xl-3 {
		padding-left: 1.2rem !important;
	}

	.p-xl-4 {
		padding: 1.6rem !important;
	}

	.pt-xl-4,
	.py-xl-4 {
		padding-top: 1.6rem !important;
	}

	.pr-xl-4,
	.px-xl-4 {
		padding-right: 1.6rem !important;
	}

	.pb-xl-4,
	.py-xl-4 {
		padding-bottom: 1.6rem !important;
	}

	.pl-xl-4,
	.px-xl-4 {
		padding-left: 1.6rem !important;
	}

	.p-xl-5 {
		padding: 2rem !important;
	}

	.pt-xl-5,
	.py-xl-5 {
		padding-top: 2rem !important;
	}

	.pr-xl-5,
	.px-xl-5 {
		padding-right: 2rem !important;
	}

	.pb-xl-5,
	.py-xl-5 {
		padding-bottom: 2rem !important;
	}

	.pl-xl-5,
	.px-xl-5 {
		padding-left: 2rem !important;
	}

	.p-xl-6 {
		padding: 2.4rem !important;
	}

	.pt-xl-6,
	.py-xl-6 {
		padding-top: 2.4rem !important;
	}

	.pr-xl-6,
	.px-xl-6 {
		padding-right: 2.4rem !important;
	}

	.pb-xl-6,
	.py-xl-6 {
		padding-bottom: 2.4rem !important;
	}

	.pl-xl-6,
	.px-xl-6 {
		padding-left: 2.4rem !important;
	}

	.p-xl-7 {
		padding: 2.8rem !important;
	}

	.pt-xl-7,
	.py-xl-7 {
		padding-top: 2.8rem !important;
	}

	.pr-xl-7,
	.px-xl-7 {
		padding-right: 2.8rem !important;
	}

	.pb-xl-7,
	.py-xl-7 {
		padding-bottom: 2.8rem !important;
	}

	.pl-xl-7,
	.px-xl-7 {
		padding-left: 2.8rem !important;
	}

	.p-xl-8 {
		padding: 3.2rem !important;
	}

	.pt-xl-8,
	.py-xl-8 {
		padding-top: 3.2rem !important;
	}

	.pr-xl-8,
	.px-xl-8 {
		padding-right: 3.2rem !important;
	}

	.pb-xl-8,
	.py-xl-8 {
		padding-bottom: 3.2rem !important;
	}

	.pl-xl-8,
	.px-xl-8 {
		padding-left: 3.2rem !important;
	}

	.p-xl-9 {
		padding: 3.6rem !important;
	}

	.pt-xl-9,
	.py-xl-9 {
		padding-top: 3.6rem !important;
	}

	.pr-xl-9,
	.px-xl-9 {
		padding-right: 3.6rem !important;
	}

	.pb-xl-9,
	.py-xl-9 {
		padding-bottom: 3.6rem !important;
	}

	.pl-xl-9,
	.px-xl-9 {
		padding-left: 3.6rem !important;
	}

	.p-xl-10 {
		padding: 4rem !important;
	}

	.pt-xl-10,
	.py-xl-10 {
		padding-top: 4rem !important;
	}

	.pr-xl-10,
	.px-xl-10 {
		padding-right: 4rem !important;
	}

	.pb-xl-10,
	.py-xl-10 {
		padding-bottom: 4rem !important;
	}

	.pl-xl-10,
	.px-xl-10 {
		padding-left: 4rem !important;
	}

	.m-xl-n1 {
		margin: -0.4rem !important;
	}

	.mt-xl-n1,
	.my-xl-n1 {
		margin-top: -0.4rem !important;
	}

	.mr-xl-n1,
	.mx-xl-n1 {
		margin-right: -0.4rem !important;
	}

	.mb-xl-n1,
	.my-xl-n1 {
		margin-bottom: -0.4rem !important;
	}

	.ml-xl-n1,
	.mx-xl-n1 {
		margin-left: -0.4rem !important;
	}

	.m-xl-n2 {
		margin: -0.8rem !important;
	}

	.mt-xl-n2,
	.my-xl-n2 {
		margin-top: -0.8rem !important;
	}

	.mr-xl-n2,
	.mx-xl-n2 {
		margin-right: -0.8rem !important;
	}

	.mb-xl-n2,
	.my-xl-n2 {
		margin-bottom: -0.8rem !important;
	}

	.ml-xl-n2,
	.mx-xl-n2 {
		margin-left: -0.8rem !important;
	}

	.m-xl-n3 {
		margin: -1.2rem !important;
	}

	.mt-xl-n3,
	.my-xl-n3 {
		margin-top: -1.2rem !important;
	}

	.mr-xl-n3,
	.mx-xl-n3 {
		margin-right: -1.2rem !important;
	}

	.mb-xl-n3,
	.my-xl-n3 {
		margin-bottom: -1.2rem !important;
	}

	.ml-xl-n3,
	.mx-xl-n3 {
		margin-left: -1.2rem !important;
	}

	.m-xl-n4 {
		margin: -1.6rem !important;
	}

	.mt-xl-n4,
	.my-xl-n4 {
		margin-top: -1.6rem !important;
	}

	.mr-xl-n4,
	.mx-xl-n4 {
		margin-right: -1.6rem !important;
	}

	.mb-xl-n4,
	.my-xl-n4 {
		margin-bottom: -1.6rem !important;
	}

	.ml-xl-n4,
	.mx-xl-n4 {
		margin-left: -1.6rem !important;
	}

	.m-xl-n5 {
		margin: -2rem !important;
	}

	.mt-xl-n5,
	.my-xl-n5 {
		margin-top: -2rem !important;
	}

	.mr-xl-n5,
	.mx-xl-n5 {
		margin-right: -2rem !important;
	}

	.mb-xl-n5,
	.my-xl-n5 {
		margin-bottom: -2rem !important;
	}

	.ml-xl-n5,
	.mx-xl-n5 {
		margin-left: -2rem !important;
	}

	.m-xl-n6 {
		margin: -2.4rem !important;
	}

	.mt-xl-n6,
	.my-xl-n6 {
		margin-top: -2.4rem !important;
	}

	.mr-xl-n6,
	.mx-xl-n6 {
		margin-right: -2.4rem !important;
	}

	.mb-xl-n6,
	.my-xl-n6 {
		margin-bottom: -2.4rem !important;
	}

	.ml-xl-n6,
	.mx-xl-n6 {
		margin-left: -2.4rem !important;
	}

	.m-xl-n7 {
		margin: -2.8rem !important;
	}

	.mt-xl-n7,
	.my-xl-n7 {
		margin-top: -2.8rem !important;
	}

	.mr-xl-n7,
	.mx-xl-n7 {
		margin-right: -2.8rem !important;
	}

	.mb-xl-n7,
	.my-xl-n7 {
		margin-bottom: -2.8rem !important;
	}

	.ml-xl-n7,
	.mx-xl-n7 {
		margin-left: -2.8rem !important;
	}

	.m-xl-n8 {
		margin: -3.2rem !important;
	}

	.mt-xl-n8,
	.my-xl-n8 {
		margin-top: -3.2rem !important;
	}

	.mr-xl-n8,
	.mx-xl-n8 {
		margin-right: -3.2rem !important;
	}

	.mb-xl-n8,
	.my-xl-n8 {
		margin-bottom: -3.2rem !important;
	}

	.ml-xl-n8,
	.mx-xl-n8 {
		margin-left: -3.2rem !important;
	}

	.m-xl-n9 {
		margin: -3.6rem !important;
	}

	.mt-xl-n9,
	.my-xl-n9 {
		margin-top: -3.6rem !important;
	}

	.mr-xl-n9,
	.mx-xl-n9 {
		margin-right: -3.6rem !important;
	}

	.mb-xl-n9,
	.my-xl-n9 {
		margin-bottom: -3.6rem !important;
	}

	.ml-xl-n9,
	.mx-xl-n9 {
		margin-left: -3.6rem !important;
	}

	.m-xl-n10 {
		margin: -4rem !important;
	}

	.mt-xl-n10,
	.my-xl-n10 {
		margin-top: -4rem !important;
	}

	.mr-xl-n10,
	.mx-xl-n10 {
		margin-right: -4rem !important;
	}

	.mb-xl-n10,
	.my-xl-n10 {
		margin-bottom: -4rem !important;
	}

	.ml-xl-n10,
	.mx-xl-n10 {
		margin-left: -4rem !important;
	}

	.m-xl-auto {
		margin: auto !important;
	}

	.mt-xl-auto,
	.my-xl-auto {
		margin-top: auto !important;
	}

	.mr-xl-auto,
	.mx-xl-auto {
		margin-right: auto !important;
	}

	.mb-xl-auto,
	.my-xl-auto {
		margin-bottom: auto !important;
	}

	.ml-xl-auto,
	.mx-xl-auto {
		margin-left: auto !important;
	}
}

.text-monospace {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
		"Courier New", monospace !important;
}

.text-justify {
	text-align: justify !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

@media (min-width: 576px) {
	.text-sm-left {
		text-align: left !important;
	}

	.text-sm-right {
		text-align: right !important;
	}

	.text-sm-center {
		text-align: center !important;
	}
}

@media (min-width: 768px) {
	.text-md-left {
		text-align: left !important;
	}

	.text-md-right {
		text-align: right !important;
	}

	.text-md-center {
		text-align: center !important;
	}
}

@media (min-width: 992px) {
	.text-lg-left {
		text-align: left !important;
	}

	.text-lg-right {
		text-align: right !important;
	}

	.text-lg-center {
		text-align: center !important;
	}
}

@media (min-width: 1200px) {
	.text-xl-left {
		text-align: left !important;
	}

	.text-xl-right {
		text-align: right !important;
	}

	.text-xl-center {
		text-align: center !important;
	}
}

.text-lowercase {
	text-transform: lowercase !important;
}

.text-uppercase {
	text-transform: uppercase !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.font-weight-light {
	font-weight: 300 !important;
}

.font-weight-lighter {
	font-weight: lighter !important;
}

.font-weight-normal {
	font-weight: 400 !important;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.font-weight-bolder {
	font-weight: bolder !important;
}

.font-italic {
	font-style: italic !important;
}

.text-white {
	color: #fff !important;
}

.text-primary {
	color: var(--primary) !important;
}

a.text-primary:hover,
a.text-primary:focus {
	color: #341d6c !important;
}

.text-secondary {
	color: #ff4081 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
	color: #f30053 !important;
}

.text-success {
	color: #52c41a !important;
}

a.text-success:hover,
a.text-success:focus {
	color: #368011 !important;
}

.text-info {
	color: #1890ff !important;
}

a.text-info:hover,
a.text-info:focus {
	color: #0069cb !important;
}

.text-warning {
	color: #fa8c16 !important;
}

a.text-warning:hover,
a.text-warning:focus {
	color: #bf6504 !important;
}

.text-danger {
	color: #d32c1f !important;
}

a.text-danger:hover,
a.text-danger:focus {
	color: #d2190b !important;
}

.text-light {
	color: #e5e5e5 !important;
}

a.text-light:hover,
a.text-light:focus {
	color: #bfbfbf !important;
}

.text-dark {
	color: #212121 !important;
}

a.text-dark:hover,
a.text-dark:focus {
	color: #000 !important;
}

.text-body {
	color: #757575 !important;
}

.text-muted {
	color: #757575 !important;
}

.text-black-50 {
	color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
	color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.text-decoration-none {
	text-decoration: none !important;
}

.text-break {
	word-break: break-word !important;
	overflow-wrap: break-word !important;
}

.text-reset {
	color: inherit !important;
}

.visible {
	visibility: visible !important;
}

.invisible {
	visibility: hidden !important;
}

@media print {

	*,
	*::before,
	*::after {
		text-shadow: none !important;
		box-shadow: none !important;
	}

	a:not(.btn) {
		text-decoration: underline;
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	pre {
		white-space: pre-wrap !important;
	}

	pre,
	blockquote {
		border: 1px solid #adb5bd;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}

	@page {
		size: a3;
	}

	body {
		min-width: 992px !important;
	}

	.container {
		min-width: 992px !important;
	}

	.navbar {
		display: none;
	}

	.badge {
		border: 1px solid #000;
	}

	.table {
		border-collapse: collapse !important;
	}

	.table td,
	.table th {
		background-color: #fff !important;
	}

	.table-bordered th,
	.table-bordered td {
		border: 1px solid #dee2e6 !important;
	}

	.table-dark {
		color: inherit;
	}

	.table-dark th,
	.table-dark td,
	.table-dark thead th,
	.table-dark tbody+tbody {
		border-color: #ddd;
	}

	.table .thead-dark th {
		color: inherit;
		border-color: #ddd;
	}
}

.dt-loader {
	position: relative;
	margin: 0 auto;
	width: 60px;
	height: 100%;
	display: none;
}

.dt-loader-container {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background-color: #fff;
}

.dt-loader-container .dt-loader {
	display: block;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}

.dt-loader-container+.dt-root {
	opacity: 0;
}

.dt-loader:before {
	content: "";
	display: block;
	padding-top: 100%;
}

.dt-loader.active {
	display: block;
}

.circular {
	animation: rotate 2s linear infinite;
	-webkit-animation: rotate 2s linear infinite;
	height: auto;
	transform-origin: center center;
	-webkit-transform-origin: center center;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	-webkit-animation: dash 1.5s ease-in-out infinite,
		color 6s ease-in-out infinite;
	stroke-linecap: round;
}

@keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}

	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

@keyframes color {

	100%,
	0% {
		stroke: #d62d20;
	}

	40% {
		stroke: #0057e7;
	}

	66% {
		stroke: #008744;
	}

	80%,
	90% {
		stroke: #ffa700;
	}
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}

	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

@-webkit-keyframes color {

	100%,
	0% {
		stroke: #d62d20;
	}

	40% {
		stroke: #0057e7;
	}

	66% {
		stroke: #008744;
	}

	80%,
	90% {
		stroke: #ffa700;
	}
}

.owl-theme .owl-nav {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*="owl-"] {
	color: #fff;
	font-size: 14px;
	margin: 5px;
	padding: 4px 7px;
	background: #d6d6d6;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
	background: #869791;
	color: #fff;
	text-decoration: none;
}

.owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 10px;
}

.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	display: inline;
}

.owl-theme .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 2px;
	background: #fff;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #fff;
}

.owl-theme .owl-dots {
	text-align: left;
}

.owl-theme .owl-dots .owl-dot span {
	border: 2px solid #757575;
}

.owl-theme .owl-dots .owl-dot.active span {
	border-color: var(--primary);
	width: 14px;
	height: 14px;
}

.owl-theme .owl-dots .owl-dot:focus {
	outline: 0;
}

@-webkit-keyframes swal2-show {
	0% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}

	45% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	80% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes swal2-show {
	0% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}

	45% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	80% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes swal2-hide {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
		opacity: 0;
	}
}

@keyframes swal2-hide {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
		opacity: 0;
	}
}

@-webkit-keyframes swal2-animate-success-line-tip {
	0% {
		top: 1.1875em;
		left: 0.0625em;
		width: 0;
	}

	54% {
		top: 1.0625em;
		left: 0.125em;
		width: 0;
	}

	70% {
		top: 2.1875em;
		left: -0.375em;
		width: 3.125em;
	}

	84% {
		top: 3em;
		left: 1.3125em;
		width: 1.0625em;
	}

	100% {
		top: 2.8125em;
		left: 0.875em;
		width: 1.5625em;
	}
}

@keyframes swal2-animate-success-line-tip {
	0% {
		top: 1.1875em;
		left: 0.0625em;
		width: 0;
	}

	54% {
		top: 1.0625em;
		left: 0.125em;
		width: 0;
	}

	70% {
		top: 2.1875em;
		left: -0.375em;
		width: 3.125em;
	}

	84% {
		top: 3em;
		left: 1.3125em;
		width: 1.0625em;
	}

	100% {
		top: 2.8125em;
		left: 0.875em;
		width: 1.5625em;
	}
}

@-webkit-keyframes swal2-animate-success-line-long {
	0% {
		top: 3.375em;
		right: 2.875em;
		width: 0;
	}

	65% {
		top: 3.375em;
		right: 2.875em;
		width: 0;
	}

	84% {
		top: 2.1875em;
		right: 0;
		width: 3.4375em;
	}

	100% {
		top: 2.375em;
		right: 0.5em;
		width: 2.9375em;
	}
}

@keyframes swal2-animate-success-line-long {
	0% {
		top: 3.375em;
		right: 2.875em;
		width: 0;
	}

	65% {
		top: 3.375em;
		right: 2.875em;
		width: 0;
	}

	84% {
		top: 2.1875em;
		right: 0;
		width: 3.4375em;
	}

	100% {
		top: 2.375em;
		right: 0.5em;
		width: 2.9375em;
	}
}

@-webkit-keyframes swal2-rotate-success-circular-line {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}

	100% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
}

@keyframes swal2-rotate-success-circular-line {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}

	100% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
}

@-webkit-keyframes swal2-animate-error-x-mark {
	0% {
		margin-top: 1.625em;
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		opacity: 0;
	}

	50% {
		margin-top: 1.625em;
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		opacity: 0;
	}

	80% {
		margin-top: -0.375em;
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		margin-top: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes swal2-animate-error-x-mark {
	0% {
		margin-top: 1.625em;
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		opacity: 0;
	}

	50% {
		margin-top: 1.625em;
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
		opacity: 0;
	}

	80% {
		margin-top: -0.375em;
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		margin-top: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes swal2-animate-error-icon {
	0% {
		-webkit-transform: rotateX(100deg);
		transform: rotateX(100deg);
		opacity: 0;
	}

	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes swal2-animate-error-icon {
	0% {
		-webkit-transform: rotateX(100deg);
		transform: rotateX(100deg);
		opacity: 0;
	}

	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		opacity: 1;
	}
}

body.swal2-toast-shown .swal2-container {
	background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-shown {
	background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-top {
	top: 0;
	right: auto;
	bottom: auto;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
	top: 0;
	right: auto;
	bottom: auto;
	left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
	top: 50%;
	right: auto;
	bottom: auto;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
	top: 50%;
	right: auto;
	bottom: auto;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
	top: 50%;
	right: 0;
	bottom: auto;
	left: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
	top: auto;
	right: auto;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
	top: auto;
	right: 0;
	bottom: 0;
	left: auto;
}

body.swal2-toast-column .swal2-toast {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: stretch;
	align-items: stretch;
}

body.swal2-toast-column .swal2-toast .swal2-actions {
	-ms-flex: 1;
	flex: 1;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	height: 2.2em;
	margin-top: 0.3125em;
}

body.swal2-toast-column .swal2-toast .swal2-loading {
	-ms-flex-pack: center;
	justify-content: center;
}

body.swal2-toast-column .swal2-toast .swal2-input {
	height: 2em;
	margin: 0.3125em auto;
	font-size: 1em;
}

body.swal2-toast-column .swal2-toast .swal2-validation-message {
	font-size: 1em;
}

.swal2-popup.swal2-toast {
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-align: center;
	align-items: center;
	width: auto;
	padding: 0.625em;
	box-shadow: 0 0 0.625em #d9d9d9;
	overflow-y: hidden;
}

.swal2-popup.swal2-toast .swal2-header {
	-ms-flex-direction: row;
	flex-direction: row;
}

.swal2-popup.swal2-toast .swal2-title {
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: 0 0.6em;
	font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
	margin: 0.5em 0 0;
	padding: 0.5em 0 0;
	font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
	position: initial;
	width: 0.8em;
	height: 0.8em;
	line-height: 0.8;
}

.swal2-popup.swal2-toast .swal2-content {
	-ms-flex-pack: start;
	justify-content: flex-start;
	font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-icon {
	width: 2em;
	min-width: 2em;
	height: 2em;
	margin: 0;
}

.swal2-popup.swal2-toast .swal2-icon-text {
	font-size: 2em;
	font-weight: bold;
	line-height: 1em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
	width: 2em;
	height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
	top: 0.875em;
	width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="left"] {
	left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="right"] {
	right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
	height: auto;
	margin: 0 0.3125em;
}

.swal2-popup.swal2-toast .swal2-styled {
	margin: 0 0.3125em;
	padding: 0.3125em 0.625em;
	font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-styled:focus {
	box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em transparent;
}

.swal2-popup.swal2-toast .swal2-success {
	border-color: #52c41a;
}

.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-circular-line"] {
	position: absolute;
	width: 2em;
	height: 2.8125em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-circular-line"][class$="left"] {
	top: -0.25em;
	left: -0.9375em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 2em 2em;
	transform-origin: 2em 2em;
	border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-circular-line"][class$="right"] {
	top: -0.25em;
	left: 0.9375em;
	-webkit-transform-origin: 0 2em;
	transform-origin: 0 2em;
	border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
	width: 2em;
	height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
	top: 0;
	left: 0.4375em;
	width: 0.4375em;
	height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-line"] {
	height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-line"][class$="tip"] {
	top: 1.125em;
	left: 0.1875em;
	width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-line"][class$="long"] {
	top: 0.9375em;
	right: 0.1875em;
	width: 1.375em;
}

.swal2-popup.swal2-toast.swal2-show {
	-webkit-animation: showSweetToast 0.5s;
	animation: showSweetToast 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
	-webkit-animation: hideSweetToast 0.2s forwards;
	animation: hideSweetToast 0.2s forwards;
}

.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip {
	-webkit-animation: animate-toast-success-tip 0.75s;
	animation: animate-toast-success-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long {
	-webkit-animation: animate-toast-success-long 0.75s;
	animation: animate-toast-success-long 0.75s;
}

@-webkit-keyframes showSweetToast {
	0% {
		-webkit-transform: translateY(-0.625em) rotateZ(2deg);
		transform: translateY(-0.625em) rotateZ(2deg);
		opacity: 0;
	}

	33% {
		-webkit-transform: translateY(0) rotateZ(-2deg);
		transform: translateY(0) rotateZ(-2deg);
		opacity: 0.5;
	}

	66% {
		-webkit-transform: translateY(0.3125em) rotateZ(2deg);
		transform: translateY(0.3125em) rotateZ(2deg);
		opacity: 0.7;
	}

	100% {
		-webkit-transform: translateY(0) rotateZ(0);
		transform: translateY(0) rotateZ(0);
		opacity: 1;
	}
}

@keyframes showSweetToast {
	0% {
		-webkit-transform: translateY(-0.625em) rotateZ(2deg);
		transform: translateY(-0.625em) rotateZ(2deg);
		opacity: 0;
	}

	33% {
		-webkit-transform: translateY(0) rotateZ(-2deg);
		transform: translateY(0) rotateZ(-2deg);
		opacity: 0.5;
	}

	66% {
		-webkit-transform: translateY(0.3125em) rotateZ(2deg);
		transform: translateY(0.3125em) rotateZ(2deg);
		opacity: 0.7;
	}

	100% {
		-webkit-transform: translateY(0) rotateZ(0);
		transform: translateY(0) rotateZ(0);
		opacity: 1;
	}
}

@-webkit-keyframes hideSweetToast {
	0% {
		opacity: 1;
	}

	33% {
		opacity: 0.5;
	}

	100% {
		-webkit-transform: rotateZ(1deg);
		transform: rotateZ(1deg);
		opacity: 0;
	}
}

@keyframes hideSweetToast {
	0% {
		opacity: 1;
	}

	33% {
		opacity: 0.5;
	}

	100% {
		-webkit-transform: rotateZ(1deg);
		transform: rotateZ(1deg);
		opacity: 0;
	}
}

@-webkit-keyframes animate-toast-success-tip {
	0% {
		top: 0.5625em;
		left: 0.0625em;
		width: 0;
	}

	54% {
		top: 0.125em;
		left: 0.125em;
		width: 0;
	}

	70% {
		top: 0.625em;
		left: -0.25em;
		width: 1.625em;
	}

	84% {
		top: 1.0625em;
		left: 0.75em;
		width: 0.5em;
	}

	100% {
		top: 1.125em;
		left: 0.1875em;
		width: 0.75em;
	}
}

@keyframes animate-toast-success-tip {
	0% {
		top: 0.5625em;
		left: 0.0625em;
		width: 0;
	}

	54% {
		top: 0.125em;
		left: 0.125em;
		width: 0;
	}

	70% {
		top: 0.625em;
		left: -0.25em;
		width: 1.625em;
	}

	84% {
		top: 1.0625em;
		left: 0.75em;
		width: 0.5em;
	}

	100% {
		top: 1.125em;
		left: 0.1875em;
		width: 0.75em;
	}
}

@-webkit-keyframes animate-toast-success-long {
	0% {
		top: 1.625em;
		right: 1.375em;
		width: 0;
	}

	65% {
		top: 1.25em;
		right: 0.9375em;
		width: 0;
	}

	84% {
		top: 0.9375em;
		right: 0;
		width: 1.125em;
	}

	100% {
		top: 0.9375em;
		right: 0.1875em;
		width: 1.375em;
	}
}

@keyframes animate-toast-success-long {
	0% {
		top: 1.625em;
		right: 1.375em;
		width: 0;
	}

	65% {
		top: 1.25em;
		right: 0.9375em;
		width: 0;
	}

	84% {
		top: 0.9375em;
		right: 0;
		width: 1.125em;
	}

	100% {
		top: 0.9375em;
		right: 0.1875em;
		width: 1.375em;
	}
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
	overflow: hidden;
}

body.swal2-height-auto {
	height: auto !important;
}

body.swal2-no-backdrop .swal2-shown {
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	background-color: transparent;
}

body.swal2-no-backdrop .swal2-shown>.swal2-modal {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

body.swal2-no-backdrop .swal2-shown.swal2-top {
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-top-start,
body.swal2-no-backdrop .swal2-shown.swal2-top-left {
	top: 0;
	left: 0;
}

body.swal2-no-backdrop .swal2-shown.swal2-top-end,
body.swal2-no-backdrop .swal2-shown.swal2-top-right {
	top: 0;
	right: 0;
}

body.swal2-no-backdrop .swal2-shown.swal2-center {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-center-start,
body.swal2-no-backdrop .swal2-shown.swal2-center-left {
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-center-end,
body.swal2-no-backdrop .swal2-shown.swal2-center-right {
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-bottom {
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-bottom-start,
body.swal2-no-backdrop .swal2-shown.swal2-bottom-left {
	bottom: 0;
	left: 0;
}

body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,
body.swal2-no-backdrop .swal2-shown.swal2-bottom-right {
	right: 0;
	bottom: 0;
}

.swal2-container {
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px;
	background-color: transparent;
	/*z-index: 1060;*/
	z-index: 1502;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.swal2-container.swal2-top {
	-ms-flex-align: start;
	align-items: flex-start;
}

.swal2-container.swal2-top-start,
.swal2-container.swal2-top-left {
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-top-right {
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.swal2-container.swal2-center {
	-ms-flex-align: center;
	align-items: center;
}

.swal2-container.swal2-center-start,
.swal2-container.swal2-center-left {
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.swal2-container.swal2-center-end,
.swal2-container.swal2-center-right {
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.swal2-container.swal2-bottom {
	-ms-flex-align: end;
	align-items: flex-end;
}

.swal2-container.swal2-bottom-start,
.swal2-container.swal2-bottom-left {
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.swal2-container.swal2-bottom-end,
.swal2-container.swal2-bottom-right {
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.swal2-container.swal2-grow-fullscreen>.swal2-modal {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	-ms-flex-pack: center;
	justify-content: center;
}

.swal2-container.swal2-grow-row>.swal2-modal {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-line-pack: center;
	align-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.swal2-container.swal2-grow-column {
	-ms-flex: 1;
	flex: 1;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swal2-container.swal2-grow-column.swal2-top,
.swal2-container.swal2-grow-column.swal2-center,
.swal2-container.swal2-grow-column.swal2-bottom {
	-ms-flex-align: center;
	align-items: center;
}

.swal2-container.swal2-grow-column.swal2-top-start,
.swal2-container.swal2-grow-column.swal2-center-start,
.swal2-container.swal2-grow-column.swal2-bottom-start,
.swal2-container.swal2-grow-column.swal2-top-left,
.swal2-container.swal2-grow-column.swal2-center-left,
.swal2-container.swal2-grow-column.swal2-bottom-left {
	-ms-flex-align: start;
	align-items: flex-start;
}

.swal2-container.swal2-grow-column.swal2-top-end,
.swal2-container.swal2-grow-column.swal2-center-end,
.swal2-container.swal2-grow-column.swal2-bottom-end,
.swal2-container.swal2-grow-column.swal2-top-right,
.swal2-container.swal2-grow-column.swal2-center-right,
.swal2-container.swal2-grow-column.swal2-bottom-right {
	-ms-flex-align: end;
	align-items: flex-end;
}

.swal2-container.swal2-grow-column>.swal2-modal {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-line-pack: center;
	align-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal {
	margin: auto;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	.swal2-container .swal2-modal {
		margin: 0 !important;
	}
}

.swal2-container.swal2-fade {
	transition: background-color 0.1s;
}

.swal2-container.swal2-shown {
	background-color: rgba(0, 0, 0, 0.4);
}

.swal2-popup {
	display: none;
	position: relative;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32em;
	max-width: 100%;
	padding: 6rem 3.2rem 4.8rem;
	border-radius: 0.8rem;
	background: #fff;
	font-family: inherit;
	font-size: 1.6rem;
	box-sizing: border-box;
}

.swal2-popup:focus {
	outline: none;
}

.swal2-popup.swal2-loading {
	overflow-y: hidden;
}

.swal2-popup .swal2-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
}

.swal2-popup .swal2-title {
	display: block;
	position: relative;
	max-width: 100%;
	margin: 0 0 3rem;
	padding: 0;
	color: #212121;
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
	text-transform: none;
	word-wrap: break-word;
}

.swal2-popup .swal2-actions {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 2.5rem auto 0;
	z-index: 1;
}

.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
	opacity: 0.4;
}

.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active {
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
	width: 2.5em;
	height: 2.5em;
	margin: 0.46875em;
	padding: 0;
	border: 0.25em solid transparent;
	border-radius: 100%;
	border-color: transparent;
	background-color: transparent !important;
	color: transparent;
	cursor: default;
	box-sizing: border-box;
	-webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
	animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
	margin-right: 30px;
	margin-left: 30px;
}

.swal2-popup .swal2-actions.swal2-loading:not(.swal2-styled).swal2-confirm::after {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 5px;
	border: 3px solid #999;
	border-radius: 50%;
	border-right-color: transparent;
	box-shadow: 1px 1px 1px #fff;
	content: "";
	-webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
	animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
}

.swal2-popup .swal2-styled {
	margin: 0.3125em;
	padding: 0.625em 2em;
	font-weight: 500;
	box-shadow: none;
}

.swal2-popup .swal2-styled:not([disabled]) {
	cursor: pointer;
}

.swal2-popup .swal2-styled.swal2-confirm {
	border: 0;
	border-radius: 0.4rem;
	background: initial;
	background-color: var(--primary);
	color: #fff;
	font-size: 1.4rem;
}

.swal2-popup .swal2-styled.swal2-cancel {
	border: 0;
	border-radius: 0.4rem;
	background: initial;
	background-color: #d32c1f;
	color: #fff;
	font-size: 1.4rem;
}

.swal2-popup .swal2-styled:focus {
	outline: none;
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px transparent;
}

.swal2-popup .swal2-styled::-moz-focus-inner {
	border: 0;
}

.swal2-popup .swal2-footer {
	-ms-flex-pack: center;
	justify-content: center;
	margin: 2.4rem 0 -2.8rem;
	padding: 1em 0 0;
	border-top: 1px solid #dee2e6;
	color: #545454;
	font-size: 1em;
}

.swal2-popup .swal2-image {
	max-width: 100%;
	margin: 0 auto 3rem;
}

.swal2-popup .swal2-close {
	position: absolute;
	top: 0;
	right: 0;
	-ms-flex-pack: center;
	justify-content: center;
	width: 1.2em;
	height: 1.2em;
	padding: 0;
	transition: color 0.1s ease-out;
	border: none;
	border-radius: 0;
	outline: initial;
	background: transparent;
	color: #ccc;
	font-family: serif;
	font-size: 2.5em;
	line-height: 1.2;
	cursor: pointer;
	overflow: hidden;
}

.swal2-popup .swal2-close:hover {
	-webkit-transform: none;
	transform: none;
	color: #d32c1f;
}

.swal2-popup>.swal2-input,
.swal2-popup>.swal2-file,
.swal2-popup>.swal2-textarea,
.swal2-popup>.swal2-select,
.swal2-popup>.swal2-radio,
.swal2-popup>.swal2-checkbox {
	display: none;
}

.swal2-popup .swal2-content {
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	color: #757575;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: normal;
	z-index: 1;
	word-wrap: break-word;
}

.swal2-popup #swal2-content {
	text-align: center;
}

.swal2-popup .swal2-input,
.swal2-popup .swal2-file,
.swal2-popup .swal2-textarea,
.swal2-popup .swal2-select,
.swal2-popup .swal2-radio,
.swal2-popup .swal2-checkbox {
	margin: 0 auto 1.6rem;
}

.swal2-popup .swal2-input,
.swal2-popup .swal2-file,
.swal2-popup .swal2-textarea {
	width: 100%;
	transition: border-color 0.3s, box-shadow 0.3s;
	border: 1px solid #ced4da;
	border-radius: 0.4rem;
	font-size: 1.4rem;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.swal2-popup .swal2-input.swal2-inputerror,
.swal2-popup .swal2-file.swal2-inputerror,
.swal2-popup .swal2-textarea.swal2-inputerror {
	border-color: #d32c1f !important;
	box-shadow: 0 0 2px #d32c1f !important;
}

.swal2-popup .swal2-input:focus,
.swal2-popup .swal2-file:focus,
.swal2-popup .swal2-textarea:focus {
	border: 1px solid #9679db;
	outline: none;
	box-shadow: 0 0 3px #c4e6f5;
}

.swal2-popup .swal2-input::-webkit-input-placeholder,
.swal2-popup .swal2-file::-webkit-input-placeholder,
.swal2-popup .swal2-textarea::-webkit-input-placeholder {
	color: #ccc;
}

.swal2-popup .swal2-input::-moz-placeholder,
.swal2-popup .swal2-file::-moz-placeholder,
.swal2-popup .swal2-textarea::-moz-placeholder {
	color: #ccc;
}

.swal2-popup .swal2-input:-ms-input-placeholder,
.swal2-popup .swal2-file:-ms-input-placeholder,
.swal2-popup .swal2-textarea:-ms-input-placeholder {
	color: #ccc;
}

.swal2-popup .swal2-input::-ms-input-placeholder,
.swal2-popup .swal2-file::-ms-input-placeholder,
.swal2-popup .swal2-textarea::-ms-input-placeholder {
	color: #ccc;
}

.swal2-popup .swal2-input::placeholder,
.swal2-popup .swal2-file::placeholder,
.swal2-popup .swal2-textarea::placeholder {
	color: #ccc;
}

.swal2-popup .swal2-range input {
	width: 80%;
}

.swal2-popup .swal2-range output {
	width: 20%;
	font-weight: 600;
	text-align: center;
}

.swal2-popup .swal2-range input,
.swal2-popup .swal2-range output {
	height: 2.625em;
	margin: 0 auto 1.6rem;
	padding: 0;
	font-size: 1.4rem;
	line-height: 2.625em;
}

.swal2-popup .swal2-input {
	height: 2.625em;
	padding: 1.06rem 1.7rem;
}

.swal2-popup .swal2-input[type="number"] {
	max-width: 10em;
}

.swal2-popup .swal2-file {
	font-size: 1.4rem;
}

.swal2-popup .swal2-textarea {
	height: 6.75em;
	padding: 0.75em;
}

.swal2-popup .swal2-select {
	min-width: 50%;
	max-width: 100%;
	padding: 0.375em 0.625em;
	color: #545454;
	font-size: 1.4rem;
}

.swal2-popup .swal2-radio,
.swal2-popup .swal2-checkbox {
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.swal2-popup .swal2-radio label,
.swal2-popup .swal2-checkbox label {
	margin: 0 0.6em;
	font-size: 1.4rem;
}

.swal2-popup .swal2-radio input,
.swal2-popup .swal2-checkbox input {
	margin: 0 0.4em;
}

.swal2-popup .swal2-validation-message {
	display: none;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0.625em;
	background: #f0f0f0;
	color: #666;
	font-size: 1em;
	font-weight: 300;
	overflow: hidden;
}

.swal2-popup .swal2-validation-message::before {
	display: inline-block;
	width: 1.5em;
	min-width: 1.5em;
	height: 1.5em;
	margin: 0 0.625em;
	border-radius: 50%;
	background-color: #d32c1f;
	color: #fff;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	content: "!";
	zoom: normal;
}

@supports (-ms-accelerator: true) {
	.swal2-range input {
		width: 100% !important;
	}

	.swal2-range output {
		display: none;
	}
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	.swal2-range input {
		width: 100% !important;
	}

	.swal2-range output {
		display: none;
	}
}

@-moz-document url-prefix() {
	.swal2-close:focus {
		outline: 2px solid transparent;
	}
}

.swal2-icon {
	position: relative;
	-ms-flex-pack: center;
	justify-content: center;
	width: 5em;
	height: 5em;
	margin: 0 auto 2.6rem;
	border: 0.25em solid transparent;
	border-radius: 50%;
	line-height: 5em;
	cursor: default;
	box-sizing: content-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	zoom: normal;
}

.swal2-icon-text {
	font-size: 3.75em;
}

.swal2-icon.swal2-error {
	border-color: #d32c1f;
}

.swal2-icon.swal2-error .swal2-x-mark {
	position: relative;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
	display: block;
	position: absolute;
	top: 2.3125em;
	width: 2.9375em;
	height: 0.3125em;
	border-radius: 0.125em;
	background-color: #d32c1f;
}

.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="left"] {
	left: 1.0625em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="right"] {
	right: 1em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.swal2-icon.swal2-warning {
	border-color: #fb9d39;
	color: #fa8c16;
}

.swal2-icon.swal2-info {
	border-color: #7ec1ff;
	color: #1890ff;
}

.swal2-icon.swal2-question {
	border-color: #c9dae1;
	color: #87adbd;
}

.swal2-icon.swal2-success {
	border-color: #52c41a;
}

.swal2-icon.swal2-success [class^="swal2-success-circular-line"] {
	position: absolute;
	width: 3.75em;
	height: 7.5em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-radius: 50%;
}

.swal2-icon.swal2-success [class^="swal2-success-circular-line"][class$="left"] {
	top: -0.4375em;
	left: -2.0635em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 3.75em 3.75em;
	transform-origin: 3.75em 3.75em;
	border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^="swal2-success-circular-line"][class$="right"] {
	top: -0.6875em;
	left: 1.875em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 0 3.75em;
	transform-origin: 0 3.75em;
	border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
	position: absolute;
	top: -0.25em;
	left: -0.25em;
	width: 100%;
	height: 100%;
	border: 0.25em solid rgba(82, 196, 26, 0.3);
	border-radius: 50%;
	z-index: 2;
	box-sizing: content-box;
}

.swal2-icon.swal2-success .swal2-success-fix {
	position: absolute;
	top: 0.5em;
	left: 1.625em;
	width: 0.4375em;
	height: 5.625em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	z-index: 1;
}

.swal2-icon.swal2-success [class^="swal2-success-line"] {
	display: block;
	position: absolute;
	height: 0.3125em;
	border-radius: 0.125em;
	background-color: #52c41a;
	z-index: 2;
}

.swal2-icon.swal2-success [class^="swal2-success-line"][class$="tip"] {
	top: 2.875em;
	left: 0.875em;
	width: 1.5625em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^="swal2-success-line"][class$="long"] {
	top: 2.375em;
	right: 0.5em;
	width: 2.9375em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.swal2-progresssteps {
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 1.25em;
	padding: 0;
	font-weight: 600;
}

.swal2-progresssteps li {
	display: inline-block;
	position: relative;
}

.swal2-progresssteps .swal2-progresscircle {
	width: 2em;
	height: 2em;
	border-radius: 2em;
	background: #3085d6;
	color: #fff;
	line-height: 2em;
	text-align: center;
	z-index: 20;
}

.swal2-progresssteps .swal2-progresscircle:first-child {
	margin-left: 0;
}

.swal2-progresssteps .swal2-progresscircle:last-child {
	margin-right: 0;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
	background: #3085d6;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle {
	background: #add8e6;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline {
	background: #add8e6;
}

.swal2-progresssteps .swal2-progressline {
	width: 2.5em;
	height: 0.4em;
	margin: 0 -1px;
	background: #3085d6;
	z-index: 10;
}

[class^="swal2"] {
	-webkit-tap-highlight-color: transparent;
}

.swal2-show {
	-webkit-animation: swal2-show 0.3s;
	animation: swal2-show 0.3s;
}

.swal2-show.swal2-noanimation {
	-webkit-animation: none;
	animation: none;
}

.swal2-hide {
	-webkit-animation: swal2-hide 0.15s forwards;
	animation: swal2-hide 0.15s forwards;
}

.swal2-hide.swal2-noanimation {
	-webkit-animation: none;
	animation: none;
}

.swal2-rtl .swal2-close {
	right: auto;
	left: 0;
}

.swal2-animate-success-icon .swal2-success-line-tip {
	-webkit-animation: swal2-animate-success-line-tip 0.75s;
	animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-animate-success-icon .swal2-success-line-long {
	-webkit-animation: swal2-animate-success-line-long 0.75s;
	animation: swal2-animate-success-line-long 0.75s;
}

.swal2-animate-success-icon .swal2-success-circular-line-right {
	-webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
	animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-animate-error-icon {
	-webkit-animation: swal2-animate-error-icon 0.5s;
	animation: swal2-animate-error-icon 0.5s;
}

.swal2-animate-error-icon .swal2-x-mark {
	-webkit-animation: swal2-animate-error-x-mark 0.5s;
	animation: swal2-animate-error-x-mark 0.5s;
}

@-webkit-keyframes swal2-rotate-loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes swal2-rotate-loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@media print {
	body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
		overflow-y: scroll !important;
	}

	body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden="true"] {
		display: none;
	}

	body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
		position: initial !important;
	}
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
	overflow: hidden !important;
}

.swal2-popup .swal2-title {
	font-weight: 400;
}

.swal2-popup .swal2-styled {
	padding: 1.2rem 2rem;
}

body {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	body {
		transition: none;
	}
}

@media (max-width: 575.98px) {
	body {
		font-size: 1.6rem;
	}
}

html {
	font-size: 62.5%;
}

@media (max-width: 575.98px) {
	html {
		font-size: 47%;
	}
}

::-moz-selection {
	color: #fff;
	background-color: var(--primary);
}

::selection {
	color: #fff;
	background-color: var(--primary);
}

.bg-primary ::-moz-selection {
	color: var(--primary);
	background-color: #fff;
}

.bg-primary ::selection {
	color: var(--primary);
	background-color: #fff;
}

a:hover,
a:focus {
	outline: 0 none;
}

.display-5 {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.2;
}

.display-6 {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.2;
}

@media (max-width: 575.98px) {

	h4,
	.h4 {
		font-size: 1.8rem;
	}

	h5,
	.h5 {
		font-size: 1.6rem;
	}

	h6,
	.h6 {
		font-size: 1.4rem;
	}
}

.ps-custom-scrollbar {
	position: relative;
}

.bg-focus {
	background-color: transparent;
}

.bg-focus:focus {
	background-color: #f4f4f4;
}

.theme-dark .bg-focus:focus {
	background-color: #fff;
}

.toggle-button {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.toggle-button .show {
	display: block;
}

.toggle-button .hide {
	display: none;
}

.toggle-button.active .show {
	display: none;
}

.toggle-button.active .hide {
	display: block;
}

[data-toggle="mdrawer"],
[data-switch="mdrawer"],
[data-dismiss="mdrawer"],
[data-open="compose"],
[data-dismiss="compose"],
[data-toggle="minimize"],
[data-location] {
	cursor: pointer;
}

.flex-1 {
	flex: 1;
	-ms-flex: 1 1 auto;
}

.flex-initial {
	-ms-flex: initial !important;
	flex: initial !important;
}

.more-thumb {
	position: relative;
	overflow: hidden;
}

.more-thumb>.count-number {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	z-index: 2;
	display: inline-block;
}

.more-thumb:after {
	content: "";
	height: 100%;
	width: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
	.more-thumb:after {
		transition: none;
	}
}

.more-thumb:hover:after {
	background-color: rgba(0, 0, 0, 0.65);
}

.dot-shape.dot-shape-lg {
	width: 10px;
	height: 10px;
}

.dot-shape.dot-shape-xl {
	width: 12px;
	height: 12px;
}

.pulse-primary {
	display: inline-block;
	box-shadow: 0 0 0 rgba(81, 45, 168, 0.4);
	-webkit-animation: pulse-primary 2s infinite;
	animation: pulse-primary 2s infinite;
}

@-webkit-keyframes pulse-primary {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(81, 45, 168, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(81, 45, 168, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(81, 45, 168, 0);
	}
}

@keyframes pulse-primary {
	0% {
		box-shadow: 0 0 0 0 rgba(81, 45, 168, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(81, 45, 168, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(81, 45, 168, 0);
	}
}

.pulse-danger {
	display: inline-block;
	box-shadow: 0 0 0 rgba(244, 67, 54, 0.4);
	-webkit-animation: pulse-danger 2s infinite;
	animation: pulse-danger 2s infinite;
}

@-webkit-keyframes pulse-danger {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(244, 67, 54, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
	}
}

@keyframes pulse-danger {
	0% {
		box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(244, 67, 54, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
	}
}

.pulse-success {
	display: inline-block;
	box-shadow: 0 0 0 rgba(82, 196, 26, 0.4);
	-webkit-animation: pulse-success 2s infinite;
	animation: pulse-success 2s infinite;
}

@-webkit-keyframes pulse-success {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(82, 196, 26, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(82, 196, 26, 0);
	}
}

@keyframes pulse-success {
	0% {
		box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(82, 196, 26, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(82, 196, 26, 0);
	}
}

.pulse-info {
	display: inline-block;
	box-shadow: 0 0 0 rgba(24, 144, 255, 0.4);
	-webkit-animation: pulse-info 2s infinite;
	animation: pulse-info 2s infinite;
}

@-webkit-keyframes pulse-info {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(24, 144, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(24, 144, 255, 0);
	}
}

@keyframes pulse-info {
	0% {
		box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(24, 144, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(24, 144, 255, 0);
	}
}

.pulse-yellow {
	display: inline-block;
	box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
	-webkit-animation: pulse-yellow 2s infinite;
	animation: pulse-yellow 2s infinite;
}

@-webkit-keyframes pulse-yellow {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(255, 193, 7, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
	}
}

@keyframes pulse-yellow {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(255, 193, 7, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
	}
}

.pulse-light {
	display: inline-block;
	box-shadow: 0 0 0 rgba(229, 229, 229, 0.4);
	-webkit-animation: pulse-light 2s infinite;
	animation: pulse-light 2s infinite;
}

@-webkit-keyframes pulse-light {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(229, 229, 229, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(229, 229, 229, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(229, 229, 229, 0);
	}
}

@keyframes pulse-light {
	0% {
		box-shadow: 0 0 0 0 rgba(229, 229, 229, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(229, 229, 229, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(229, 229, 229, 0);
	}
}

@-webkit-keyframes show-hide {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes show-hide {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.dt-module,
.dt-card {
	position: relative;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	margin-bottom: 3.2rem;
	background-color: #fff;
	border-radius: 0.4rem;
}

.dt-nav,
.dt-module-side-nav,
.dt-action-nav,
.dt-side-nav,
.dt-side-nav__sub-menu,
.dt-indicator,
.dt-list,
.dt-team-list,
.invoice-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.dt-avatar,
.dt-avatar__outline,
.dt-fab-btn,
.dt-slider__header .dt-checkbox-icon .dt-checkbox-content {
	border-radius: 50%;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	position: relative;
	overflow: hidden;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.dt-avatar:not([class*="size-"]):not(.dt-checkbox-content),
.dt-avatar__outline:not([class*="size-"]):not(.dt-checkbox-content),
.dt-fab-btn:not([class*="size-"]):not(.dt-checkbox-content),
.dt-slider__header .dt-checkbox-icon .dt-checkbox-content:not([class*="size-"]):not(.dt-checkbox-content) {
	width: 40px;
	height: 40px;
}

.dot-shape {
	width: 8px;
	height: 8px;
	background-color: var(--primary);
	display: inline-block;
	border-radius: 50%;
}

.dt-widget-hover .dt-widget__item .show-content,
.dt-widget-hover-bg .dt-widget__item .show-content {
	display: block;
	-webkit-animation: show-hide 0.2s;
	animation: show-hide 0.2s;
}

.dt-widget-hover .dt-widget__item .hide-content,
.dt-widget-hover-bg .dt-widget__item .hide-content {
	display: none;
	-webkit-animation: show-hide 0.2s;
	animation: show-hide 0.2s;
}

.dt-widget-hover .dt-widget__item .action-btn-group,
.dt-widget-hover-bg .dt-widget__item .action-btn-group {
	font-size: 0;
}

.dt-widget-hover .dt-widget__item .action-btn-group .btn,
.dt-widget-hover-bg .dt-widget__item .action-btn-group .btn {
	transition: all 0.2s ease-in-out;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}

@media (prefers-reduced-motion: reduce) {

	.dt-widget-hover .dt-widget__item .action-btn-group .btn,
	.dt-widget-hover-bg .dt-widget__item .action-btn-group .btn {
		transition: none;
	}
}

.dt-widget-hover .dt-widget__item .action-btn-group .btn+.btn,
.dt-widget-hover-bg .dt-widget__item .action-btn-group .btn+.btn {
	margin-left: 5px;
}

@media (max-width: 575.98px) {

	.dt-widget-hover .dt-widget__item .action-btn-group .dt-fab-btn:not([class*="size-"]),
	.dt-widget-hover-bg .dt-widget__item .action-btn-group .dt-fab-btn:not([class*="size-"]) {
		width: 30px;
		height: 30px;
	}
}

.dt-widget-hover .dt-widget__item .dt-extra.animate-slide,
.dt-widget-hover-bg .dt-widget__item .dt-extra.animate-slide {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

@media (max-width: 575.98px) {

	.dt-widget-hover .dt-widget__item .dt-extra.animate-slide .slide-content:not(:first-child),
	.dt-widget-hover-bg .dt-widget__item .dt-extra.animate-slide .slide-content:not(:first-child) {
		margin-left: 3rem;
	}
}

@media (min-width: 576px) {

	.dt-widget-hover .dt-widget__item .dt-extra.animate-slide .slide-content,
	.dt-widget-hover-bg .dt-widget__item .dt-extra.animate-slide .slide-content {
		transition: all 0.2s ease-in-out;
		-webkit-transform: translateX(110%);
		transform: translateX(110%);
		width: 0;
	}
}

@media (min-width: 576px) and (prefers-reduced-motion: reduce) {

	.dt-widget-hover .dt-widget__item .dt-extra.animate-slide .slide-content,
	.dt-widget-hover-bg .dt-widget__item .dt-extra.animate-slide .slide-content {
		transition: none;
	}
}

.dt-widget-hover .dt-widget__item:hover .dt-widget__title,
.dt-widget-hover-bg .dt-widget__item:hover .dt-widget__title {
	color: var(--primary);
}

@media (min-width: 576px) {

	.dt-widget-hover .dt-widget__item:hover .dt-extra.animate-slide .slide-content,
	.dt-widget-hover-bg .dt-widget__item:hover .dt-extra.animate-slide .slide-content {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		width: 2.5rem;
	}

	.dt-widget-hover .dt-widget__item:hover .dt-extra.animate-slide .slide-content:not(:first-child),
	.dt-widget-hover-bg .dt-widget__item:hover .dt-extra.animate-slide .slide-content:not(:first-child) {
		margin-left: 1.2rem;
	}
}

.dt-widget-hover .dt-widget__item:hover .badge-circle-animate,
.dt-widget-hover-bg .dt-widget__item:hover .badge-circle-animate {
	font-size: 1.2rem;
	border-radius: 0.4rem;
}

.dt-widget-hover .dt-widget__item:hover .badge-circle-animate.badge-pill,
.dt-widget-hover-bg .dt-widget__item:hover .badge-circle-animate.badge-pill {
	border-radius: 2rem;
}

.dt-widget-hover .dt-widget__item:hover .badge-circle-animate.badge-sm,
.dt-widget-hover-bg .dt-widget__item:hover .badge-circle-animate.badge-sm {
	padding: 3px 6px;
}

.dt-widget-hover .dt-widget__item:hover .show-content,
.dt-widget-hover-bg .dt-widget__item:hover .show-content {
	display: none;
}

.dt-widget-hover .dt-widget__item:hover .hide-content,
.dt-widget-hover-bg .dt-widget__item:hover .hide-content {
	display: block;
}

.bg-light-gray {
	background-color: #9f9f9f !important;
}

a.bg-light-gray:hover,
a.bg-light-gray:focus,
button.bg-light-gray:hover,
button.bg-light-gray:focus {
	background-color: #868686 !important;
}

.bg-light-primary {
	background-color: #c5b6eb !important;
}

a.bg-light-primary:hover,
a.bg-light-primary:focus,
button.bg-light-primary:hover,
button.bg-light-primary:focus {
	background-color: #a68de1 !important;
}

.bg-light-green {
	background-color: #1dce8e !important;
}

a.bg-light-green:hover,
a.bg-light-green:focus,
button.bg-light-green:hover,
button.bg-light-green:focus {
	background-color: #17a16f !important;
}

.bg-dark-green {
	background-color: #3d6003 !important;
}

a.bg-dark-green:hover,
a.bg-dark-green:focus,
button.bg-dark-green:hover,
button.bg-dark-green:focus {
	background-color: #1e2f01 !important;
}

.bg-light-blue {
	background-color: #5797fc !important;
}

a.bg-light-blue:hover,
a.bg-light-blue:focus,
button.bg-light-blue:hover,
button.bg-light-blue:focus {
	background-color: #2578fb !important;
}

.bg-light-pink {
	background-color: #ff415a !important;
}

a.bg-light-pink:hover,
a.bg-light-pink:focus,
button.bg-light-pink:hover,
button.bg-light-pink:focus {
	background-color: #ff0e2e !important;
}

.bg-light-brown {
	background-color: #b23737 !important;
}

a.bg-light-brown:hover,
a.bg-light-brown:focus,
button.bg-light-brown:hover,
button.bg-light-brown:focus {
	background-color: #8b2b2b !important;
}

.bg-light-teal {
	background-color: #1b8abe !important;
}

a.bg-light-teal:hover,
a.bg-light-teal:focus,
button.bg-light-teal:hover,
button.bg-light-teal:focus {
	background-color: #156a91 !important;
}

.bg-indigo {
	background-color: #3742b2 !important;
}

a.bg-indigo:hover,
a.bg-indigo:focus,
button.bg-indigo:hover,
button.bg-indigo:focus {
	background-color: #2b348b !important;
}

.bg-dark-blue {
	background-color: #0060ca !important;
}

a.bg-dark-blue:hover,
a.bg-dark-blue:focus,
button.bg-dark-blue:hover,
button.bg-dark-blue:focus {
	background-color: #004897 !important;
}

.bg-orange {
	background-color: #ff9800 !important;
}

a.bg-orange:hover,
a.bg-orange:focus,
button.bg-orange:hover,
button.bg-orange:focus {
	background-color: #cc7a00 !important;
}

.bg-sky-blue {
	background-color: #00aeef !important;
}

a.bg-sky-blue:hover,
a.bg-sky-blue:focus,
button.bg-sky-blue:hover,
button.bg-sky-blue:focus {
	background-color: #0089bc !important;
}

.bg-yellow {
	background-color: #ffc107 !important;
}

a.bg-yellow:hover,
a.bg-yellow:focus,
button.bg-yellow:hover,
button.bg-yellow:focus {
	background-color: #d39e00 !important;
}

.bg-brown {
	background-color: #5e1e21 !important;
}

a.bg-brown:hover,
a.bg-brown:focus,
button.bg-brown:hover,
button.bg-brown:focus {
	background-color: #371213 !important;
}

.bg-light-cyan {
	background-color: #00bcd4 !important;
}

a.bg-light-cyan:hover,
a.bg-light-cyan:focus,
button.bg-light-cyan:hover,
button.bg-light-cyan:focus {
	background-color: #008fa1 !important;
}

.bg-gradient-blue,
.bg-gradient-blue--after:after {
	background-image: linear-gradient(to right top,
			#000000,
			#090909,
			#131313,
			#1a1a1a,
			#202020);
	background-repeat: repeat-x;
}

.bg-gradient-purple,
.bg-gradient-purple--after:after {
	background-image: linear-gradient(135deg, #3f3f91, #ec45a0);
	background-repeat: repeat-x;
}

.bg-gradient-orange,
.bg-gradient-orange--after:after {
	background-image: linear-gradient(90deg, #c01111, #eac519);
	background-repeat: repeat-x;
}

.bg-image-v1 {
	background-image: url("../images/bg-image.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-image-v2 {
	background-image: url("../images/bg-image-1.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-image-v3 {
	background-image: url("../images/bg-image-2.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-image-v4 {
	background-image: url("../images/bg-image-3.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-image-v5 {
	background-image: url("../images/bg-image-4.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-image-v6 {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-image-v7 {
	background-image: url("../images/bg-image-6.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-overlay {
	position: relative;
}

.bg-overlay:before,
.bg-overlay:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.bg-overlay__inner {
	z-index: 3;
	position: relative;
}

.card.bg-overlay:before,
.card.bg-overlay:after,
.dt-card.bg-overlay:before,
.dt-card.bg-overlay:after {
	border-radius: 0.4rem;
}

.bg-overlay-white:after {
	background-color: #fff;
}

.bg-overlay-black:after {
	background-color: #000;
}

.border {
	border: 1px solid #ddd !important;
}

.border-top {
	border-top: 1px solid #ddd !important;
}

.border-right {
	border-right: 1px solid #ddd !important;
}

.border-bottom {
	border-bottom: 1px solid #ddd !important;
}

.border-left {
	border-left: 1px solid #ddd !important;
}

.border-0 {
	border: 0 !important;
}

.border-top-0 {
	border-top: 0 !important;
}

.border-right-0 {
	border-right: 0 !important;
}

.border-bottom-0 {
	border-bottom: 0 !important;
}

.border-left-0 {
	border-left: 0 !important;
}

@media (min-width: 576px) {
	.border-sm {
		border: 1px solid #ddd !important;
	}

	.border-sm-top {
		border-top: 1px solid #ddd !important;
	}

	.border-sm-right {
		border-right: 1px solid #ddd !important;
	}

	.border-sm-bottom {
		border-bottom: 1px solid #ddd !important;
	}

	.border-sm-left {
		border-left: 1px solid #ddd !important;
	}

	.border-sm-0 {
		border: 0 !important;
	}

	.border-sm-top-0 {
		border-top: 0 !important;
	}

	.border-sm-right-0 {
		border-right: 0 !important;
	}

	.border-sm-bottom-0 {
		border-bottom: 0 !important;
	}

	.border-sm-left-0 {
		border-left: 0 !important;
	}
}

@media (min-width: 768px) {
	.border-md {
		border: 1px solid #ddd !important;
	}

	.border-md-top {
		border-top: 1px solid #ddd !important;
	}

	.border-md-right {
		border-right: 1px solid #ddd !important;
	}

	.border-md-bottom {
		border-bottom: 1px solid #ddd !important;
	}

	.border-md-left {
		border-left: 1px solid #ddd !important;
	}

	.border-md-0 {
		border: 0 !important;
	}

	.border-md-top-0 {
		border-top: 0 !important;
	}

	.border-md-right-0 {
		border-right: 0 !important;
	}

	.border-md-bottom-0 {
		border-bottom: 0 !important;
	}

	.border-md-left-0 {
		border-left: 0 !important;
	}
}

@media (min-width: 992px) {
	.border-lg {
		border: 1px solid #ddd !important;
	}

	.border-lg-top {
		border-top: 1px solid #ddd !important;
	}

	.border-lg-right {
		border-right: 1px solid #ddd !important;
	}

	.border-lg-bottom {
		border-bottom: 1px solid #ddd !important;
	}

	.border-lg-left {
		border-left: 1px solid #ddd !important;
	}

	.border-lg-0 {
		border: 0 !important;
	}

	.border-lg-top-0 {
		border-top: 0 !important;
	}

	.border-lg-right-0 {
		border-right: 0 !important;
	}

	.border-lg-bottom-0 {
		border-bottom: 0 !important;
	}

	.border-lg-left-0 {
		border-left: 0 !important;
	}
}

@media (min-width: 1200px) {
	.border-xl {
		border: 1px solid #ddd !important;
	}

	.border-xl-top {
		border-top: 1px solid #ddd !important;
	}

	.border-xl-right {
		border-right: 1px solid #ddd !important;
	}

	.border-xl-bottom {
		border-bottom: 1px solid #ddd !important;
	}

	.border-xl-left {
		border-left: 1px solid #ddd !important;
	}

	.border-xl-0 {
		border: 0 !important;
	}

	.border-xl-top-0 {
		border-top: 0 !important;
	}

	.border-xl-right-0 {
		border-right: 0 !important;
	}

	.border-xl-bottom-0 {
		border-bottom: 0 !important;
	}

	.border-xl-left-0 {
		border-left: 0 !important;
	}
}

.border-light-gray {
	border-color: #9f9f9f !important;
}

.border-light-primary {
	border-color: #c5b6eb !important;
}

.border-light-green {
	border-color: #1dce8e !important;
}

.border-dark-green {
	border-color: #3d6003 !important;
}

.border-light-blue {
	border-color: #5797fc !important;
}

.border-light-pink {
	border-color: #ff415a !important;
}

.border-light-brown {
	border-color: #b23737 !important;
}

.border-light-teal {
	border-color: #1b8abe !important;
}

.border-indigo {
	border-color: #3742b2 !important;
}

.border-dark-blue {
	border-color: #0060ca !important;
}

.border-orange {
	border-color: #ff9800 !important;
}

.border-sky-blue {
	border-color: #00aeef !important;
}

.border-yellow {
	border-color: #ffc107 !important;
}

.border-brown {
	border-color: #5e1e21 !important;
}

.border-light-cyan {
	border-color: #00bcd4 !important;
}

.border-black-transparent {
	border-color: rgba(0, 0, 0, 0.15) !important;
}

.border-solid {
	border-style: solid !important;
}

.border-dashed {
	border-style: dashed !important;
}

.border-dotted {
	border-style: dotted !important;
}

.border-w-0 {
	border-width: 0 !important;
}

.border-w-1 {
	border-width: 1px !important;
}

.border-w-2 {
	border-width: 2px !important;
}

.border-w-3 {
	border-width: 3px !important;
}

.border-w-4 {
	border-width: 4px !important;
}

.border-w-5 {
	border-width: 5px !important;
}

.rounded-0 {
	border-radius: 0 !important;
}

@media (min-width: 576px) {
	.rounded-sm-0 {
		border-radius: 0 !important;
	}
}

@media (min-width: 768px) {
	.rounded-md-0 {
		border-radius: 0 !important;
	}
}

@media (min-width: 992px) {
	.rounded-lg-0 {
		border-radius: 0 !important;
	}
}

@media (min-width: 1200px) {
	.rounded-xl-0 {
		border-radius: 0 !important;
	}
}

.rounded-xl {
	border-radius: 0.8rem !important;
}

.shadow-xl {
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.text-light-gray {
	color: #9f9f9f !important;
}

a.text-light-gray:hover,
a.text-light-gray:focus {
	color: #797979 !important;
}

.text-light-primary {
	color: #c5b6eb !important;
}

a.text-light-primary:hover,
a.text-light-primary:focus {
	color: #9679db !important;
}

.text-light-green {
	color: #1dce8e !important;
}

a.text-light-green:hover,
a.text-light-green:focus {
	color: #148b60 !important;
}

.text-dark-green {
	color: #3d6003 !important;
}

a.text-dark-green:hover,
a.text-dark-green:focus {
	color: #0e1601 !important;
}

.text-light-blue {
	color: #5797fc !important;
}

a.text-light-blue:hover,
a.text-light-blue:focus {
	color: #0c68fb !important;
}

.text-light-pink {
	color: #ff415a !important;
}

a.text-light-pink:hover,
a.text-light-pink:focus {
	color: #f40020 !important;
}

.text-light-brown {
	color: #b23737 !important;
}

a.text-light-brown:hover,
a.text-light-brown:focus {
	color: #782525 !important;
}

.text-light-teal {
	color: #1b8abe !important;
}

a.text-light-teal:hover,
a.text-light-teal:focus {
	color: #11597b !important;
}

.text-indigo {
	color: #3742b2 !important;
}

a.text-indigo:hover,
a.text-indigo:focus {
	color: #252c78 !important;
}

.text-dark-blue {
	color: #0060ca !important;
}

a.text-dark-blue:hover,
a.text-dark-blue:focus {
	color: #003c7e !important;
}

.text-orange {
	color: #ff9800 !important;
}

a.text-orange:hover,
a.text-orange:focus {
	color: #b36a00 !important;
}

.text-sky-blue {
	color: #00aeef !important;
}

a.text-sky-blue:hover,
a.text-sky-blue:focus {
	color: #0076a3 !important;
}

.text-yellow {
	color: #ffc107 !important;
}

a.text-yellow:hover,
a.text-yellow:focus {
	color: #ba8b00 !important;
}

.text-brown {
	color: #5e1e21 !important;
}

a.text-brown:hover,
a.text-brown:focus {
	color: #240b0d !important;
}

.text-light-cyan {
	color: #00bcd4 !important;
}

a.text-light-cyan:hover,
a.text-light-cyan:focus {
	color: #007888 !important;
}

.height-75 {
	height: 75px;
}

.height-100 {
	height: 100px;
}

.height-120 {
	height: 120px;
}

.height-150 {
	height: 150px;
}

.height-200 {
	height: 200px;
}

.max-h-350 {
	max-height: 350px;
}

.max-h-400 {
	max-height: 400px;
}

.mb-n15 {
	margin-bottom: -6rem;
}

.mb-n18 {
	margin-bottom: -7.2rem;
}

.overlay-opacity-0:after {
	opacity: 0 !important;
}

.overlay-opacity-0_1:after {
	opacity: 0.1;
}

.overlay-opacity-0_2:after {
	opacity: 0.2;
}

.overlay-opacity-0_3:after {
	opacity: 0.3;
}

.overlay-opacity-0_4:after {
	opacity: 0.4;
}

.overlay-opacity-0_5:after {
	opacity: 0.5;
}

.overlay-opacity-0_6:after {
	opacity: 0.6;
}

.overlay-opacity-0_7:after {
	opacity: 0.7;
}

.overlay-opacity-0_8:after {
	opacity: 0.8;
}

.overlay-opacity-0_9:after {
	opacity: 0.9;
}

.overlay-opacity-1:after {
	opacity: 1;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-hidden {
	overflow-x: hidden;
}

.overflow-y-hidden {
	overflow-y: hidden;
}

.overflow-auto {
	overflow: auto;
}

.overflow-x-auto {
	overflow-x: auto;
}

.overflow-y-auto {
	overflow-y: auto;
}

.overflow-visible {
	overflow: visible;
}

.overflow-scroll {
	overflow: scroll;
}

.overflow-x-scroll {
	overflow-x: scroll;
}

.overflow-y-scroll {
	overflow-y: scroll;
}

.dt-separator-h {
	display: block;
	height: 1px;
	width: 100%;
	background-color: 1px solid #ddd;
}

.dt-separator-h-v1 {
	display: inline-block;
	height: 2px;
	width: 20px;
	background-color: #dee2e6;
}

.dt-separator-v {
	border-left: 1px solid #ddd;
	display: inline-block;
	height: 100%;
	width: 1px;
	margin-left: 1.4rem;
	margin-right: 1.4rem;
}

.size-20 {
	width: 20px;
	height: 20px;
}

.size-25 {
	width: 25px;
	height: 25px;
}

.size-30 {
	width: 30px;
	height: 30px;
}

.size-35 {
	width: 35px;
	height: 35px;
}

.size-40 {
	width: 40px;
	height: 40px;
}

.size-45 {
	width: 45px;
	height: 45px;
}

.size-50 {
	width: 50px;
	height: 50px;
}

.size-55 {
	width: 55px;
	height: 55px;
}

.size-60 {
	width: 60px;
	height: 60px;
}

.size-65 {
	width: 65px;
	height: 65px;
}

.size-70 {
	width: 70px;
	height: 70px;
}

.size-75 {
	width: 75px;
	height: 75px;
}

.size-80 {
	width: 80px;
	height: 80px;
}

.size-85 {
	width: 85px;
	height: 85px;
}

.size-90 {
	width: 90px;
	height: 90px;
}

.size-95 {
	width: 95px;
	height: 95px;
}

.size-100 {
	width: 100px;
	height: 100px;
}

.size-105 {
	width: 105px;
	height: 105px;
}

.size-110 {
	width: 110px;
	height: 110px;
}

.size-115 {
	width: 115px;
	height: 115px;
}

.size-120 {
	width: 120px;
	height: 120px;
}

.f-default {
	font-size: 1.4rem;
}

.f-10 {
	font-size: 10px;
}

.f-12 {
	font-size: 12px;
}

.f-14 {
	font-size: 14px;
}

.f-16 {
	font-size: 16px;
}

.font-weight-100 {
	font-weight: 100 !important;
}

.font-weight-200 {
	font-weight: 200 !important;
}

.font-weight-300 {
	font-weight: 300 !important;
}

.font-weight-400 {
	font-weight: 400 !important;
}

.font-weight-500 {
	font-weight: 500 !important;
}

.font-weight-600 {
	font-weight: 600 !important;
}

.font-weight-700 {
	font-weight: 700 !important;
}

.font-weight-800 {
	font-weight: 800 !important;
}

.font-weight-900 {
	font-weight: 900 !important;
}

.text-decoration-underline {
	text-decoration: underline;
}

.text-decoration-none {
	text-decoration: none;
}

.text-decoration-none--hover:hover,
.text-decoration-none--hover:focus {
	text-decoration: none;
}

.text-strike {
	text-decoration: line-through;
}

.min-w-50 {
	min-width: 50px;
}

.min-w-55 {
	min-width: 55px;
}

.min-w-60 {
	min-width: 60px;
}

.min-w-65 {
	min-width: 65px;
}

.min-w-70 {
	min-width: 70px;
}

.min-w-75 {
	min-width: 75px;
}

.min-w-80 {
	min-width: 80px;
}

.min-w-85 {
	min-width: 85px;
}

.min-w-90 {
	min-width: 90px;
}

.min-w-95 {
	min-width: 95px;
}

.min-w-100 {
	min-width: 100px;
}

.min-w-120 {
	min-width: 120px;
}

.min-w-150 {
	min-width: 150px;
}

.max-w-90 {
	max-width: 9rem;
}

.max-w-105 {
	max-width: 10.5rem;
}

.max-w-250 {
	max-width: 25rem !important;
}

.dt-root {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.dt-root__inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex: 1;
	flex: 1;
}

.dt-main {
	background-color: #eff3fa;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex: 1;
	-ms-flex: 1;
}

.dt-content-wrapper {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: calc(100% - 270px);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.dt-content-wrapper {
		transition: none;
	}
}

@media screen and (min-width: 1367px) {
	.dt-content-wrapper {
		width: calc(100% - 260px);
	}
}

.dt-content {
	padding: 0 41px 50px 41px;
	background-color: #fbfdff;
	box-shadow: 0px 8px 19px #0000000f;
	border-radius: 35px 35px 0px 0px;
	margin: 20px 20px 0 20px;
	min-height: calc(100vh - 20px);
}

.dt-page__header {
	margin-bottom: 4.4rem;
}

.dt-page__title {
	color: #314266;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 2px 0;
}

.dt-entry__header {
	position: relative;
	margin-bottom: 3rem;
	padding-bottom: 1.6rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #ddd;
}

.dt-entry__header:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	height: 3px;
	width: 45px;
	background-color: var(--primary);
	border-radius: 10px;
}

.dt-entry__title {
	margin-bottom: 0;
	font-size: 16px;
	text-transform: capitalize;
	color: #757575;
}

.dt-header {
	position: relative;
	z-index: 99;
	/* background-color: #f4f4f4; */
	transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.dt-header {
		transition: none;
	}
}

.dt-header--fixed .dt-header {
	/* position: fixed; */
	z-index: 900;
	width: 100%;
}

.dt-header--fixed .dt-header+.dt-main {
	transition: all 0.2s ease;
	/* margin-top: 72px */
}

@media (prefers-reduced-motion: reduce) {
	.dt-header--fixed .dt-header+.dt-main {
		transition: none;
	}
}

.dt-header__container {
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	/* background-color: white; */
}

.dt-header__toolbar {
	display: -ms-flexbox;
	display: flex;
	padding-right: 3.2rem;
	padding-left: 3.2rem;
	width: calc(100% - 210px);
	/* box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2); */
}

@media screen and (min-width: 1367px) {
	.dt-header__toolbar {
		width: 100%;
	}
}

.dt-header__toolbar .search-box {
	margin-right: 1rem;
	-ms-flex-item-align: center;
	align-self: center;
}

.theme-semidark .dt-header__toolbar .search-box .btn-primary {
	background: linear-gradient(to right top,
			#000000,
			#090909,
			#131313,
			#1a1a1a,
			#202020);
	border-color: #5547c9;
}

@media (max-width: 991.98px) {
	.dt-header__toolbar {
		width: auto;
		padding-left: 0;
	}
}

@media (max-width: 575.98px) {
	.dt-header__toolbar {
		padding-right: 1.9rem;
	}
}

@media (max-width: 767.98px) {
	.dt-header__toolbar .dropdown-toggle::after {
		display: none;
	}
}

.dt-header__toolbar .dt-nav__link>i {
	font-size: 1.8rem;
}

.dt-header__toolbar .dt-nav__link>i.icon-sm {
	font-size: 1.4rem;
}

.dt-header__toolbar .dt-nav__link>i.icon-lg {
	font-size: 1.6rem;
}

@media (max-width: 575.98px) {
	.dt-header__toolbar .dt-nav__link>i {
		font-size: 2.3rem;
	}

	.dt-header__toolbar .dt-nav__link>i.icon-sm {
		font-size: 1.8rem;
	}

	.dt-header__toolbar .dt-nav__link>i.icon-lg {
		font-size: 2rem;
	}
}

.dt-brand {
	width: 210px;
	background: white;
	padding: 0 2rem;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

@media screen and (min-width: 1367px) {
	.dt-brand {
		width: calc(175px + 50px);
	}
}

@media (max-width: 991.98px) {
	.dt-brand {
		width: auto;
		padding-right: 1rem;
	}

	.dt-brand+.dt-header__toolbar {
		margin-left: auto !important;
	}
}

.dt-brand__logo {
	display: inline-block;
	margin-left: 1rem;
}

@media (max-width: 991.98px) {
	.dt-brand__logo {
		margin-left: 1rem;
	}
}

.dt-brand__logo-link,
.dt-brand__logo-symbol,
.dt-brand__logo-img {
	display: inline-block;
}

.dt-brand__logo-img {
	width: 50%;
}

.dt-brand__logo-symbol {
	width: 120px;
}

.dt-sidebar--fixed .dt-brand {
	position: fixed;
	z-index: 99;
	height: 72px;
	transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.dt-sidebar--fixed .dt-brand {
		transition: none;
	}
}

@media (max-width: 767.98px) {
	.dt-sidebar--fixed .dt-brand {
		position: static;
		height: auto;
	}
}

.dt-sidebar--fixed .dt-brand+.dt-header__toolbar {
	transition: all 0.2s ease;
	margin-left: 210px;
}

@media (prefers-reduced-motion: reduce) {
	.dt-sidebar--fixed .dt-brand+.dt-header__toolbar {
		transition: none;
	}
}

@media screen and (min-width: 1367px) {
	.dt-sidebar--fixed .dt-brand+.dt-header__toolbar {
		margin-left: calc(260px);
	}
}

.dt-nav-wrapper {
	margin-left: auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.dt-nav {
	margin: 0 -8px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.dt-nav__item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 8px;
}

.dt-nav__link {
	color: black;
	display: inline-block;
}

.dt-nav__link:hover,
.dt-nav__link:focus,
.dt-nav__link:active {
	color: grey;
	text-decoration: none;
}

.dt-nav__link .icon+span,
.dt-nav__link i+span {
	margin-left: 8px;
	display: inline-block;
}

@media (max-width: 767.98px) {

	.dt-nav__link .icon+span,
	.dt-nav__link i+span {
		display: none;
	}
}

.dt-header__toolbar .dt-nav:not(:last-child) {
	margin-right: 5.5rem;
}

@media screen and (max-width: 1300px) {
	.dt-header__toolbar .dt-nav:not(:last-child) {
		margin-right: 3rem;
	}
}

@media (max-width: 1199.98px) {
	.dt-header__toolbar .dt-nav:not(:last-child) {
		margin-right: 0.5rem;
	}
}

.dt-header__toolbar .dt-nav__link {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.dt-brand__tool {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	min-height: 20px;
	min-width: 20px;
	margin-left: 13px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: absolute;
	width: 20px;
	height: 2px;
	transition-timing-function: ease;
	transition-duration: 0.15s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	border-radius: 2px;
	background-color: black;
}

.hamburger-inner:after {
	width: 15px;
}

.hamburger-inner {
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: "";
}

.hamburger-inner:before {
	top: -5px;
}

.hamburger-inner:after {
	bottom: -5px;
}

.dt-brand__tool .hamburger-inner {
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-duration: 0.22s;
}

.dt-brand__tool .hamburger-inner:before {
	transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.dt-brand__tool .hamburger-inner:after {
	transition: bottom 0.1s ease-in 0.25s,
		-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s ease-in 0.25s,
		transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s ease-in 0.25s,
		transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
		-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.dt-brand__tool.active .hamburger-inner {
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.dt-brand__tool.active .hamburger-inner:before {
	top: 0;
	transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
	opacity: 0;
}

.dt-brand__tool.active .hamburger-inner:after {
	bottom: 0;
	transition: bottom 0.1s ease-out,
		-webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
	transition: bottom 0.1s ease-out,
		transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
	transition: bottom 0.1s ease-out,
		transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
		-webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	width: 20px;
}

.dt-notification-app .dropdown-menu {
	padding: 0;
	width: 300px;
	height: 250px;
	overflow-y: auto;
}

.dt-notification-search .dropdown-menu {
	padding: 0;
	width: 250px;
	height: auto;
}

@media (max-width: 575.98px) {
	.dt-notification-search .dropdown-menu {
		width: 200px;
	}
}

.dt-header__toolbar .dt-notification .dropdown-menu {
	width: 380px;
}

.dt-header__toolbar .dt-notification .dropdown-menu-body {
	height: 208px;
	overflow-y: auto;
}

@media (max-width: 575.98px) {
	.dt-header__toolbar .dt-notification .dropdown-menu {
		width: 280px;
	}
}

.theme-dark .dt-header__toolbar .dt-notification .dropdown-menu {
	background-color: #fafafa;
}

.theme-dark .dt-module__container .dt-notification .dropdown-menu {
	background-color: #fafafa;
}

.dt-module__container .dt-notification .dropdown-menu {
	width: 300px;
}

.dt-module__container .dt-notification .dropdown-menu-body {
	height: 180px;
	overflow-y: auto;
}

@media (max-width: 575.98px) {
	.dt-module__container .dt-notification .dropdown-menu {
		width: 280px;
	}
}

.dt-notification .media {
	position: relative;
	margin-bottom: 14px;
}

.dt-notification .media:not(:last-child) {
	padding-bottom: 14px;
}

.dt-notification .media:not(:last-child):after {
	transition: all 0.5s ease;
	content: "";
	height: 1px;
	background-color: #ddd;
	width: calc(100% - 48px);
	position: absolute;
	left: auto;
	right: 0;
	bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.dt-notification .media:not(:last-child):after {
		transition: none;
	}
}

.dt-notification .media:hover:after,
.dt-notification .media:focus:after {
	width: 100%;
}

.dt-notification .media-body {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-item-align: center;
	align-self: center;
}

.dt-notification .user-name {
	font-size: 13px;
	color: #212121;
	font-weight: 500;
}

.dt-notification .user-name+.message {
	font-size: 12px;
}

.dt-notification .meta-date {
	display: block;
	font-size: 12px;
	color: #8f8f8f;
}

.dt-notification .message {
	font-size: 13px;
	margin-bottom: 3px;
	color: #212121;
}

.dt-notification .message:last-child {
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	.dt-notification .message {
		font-size: 12px;
	}
}

.dt-app-list {
	padding-left: 0;
	list-style: none;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 10px;
}

.dt-app-list__item {
	flex: 0 0 33.3333333333%;
	-ms-flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%;
	text-align: center;
}

.dt-app-list__link,
.dt-app-list__text {
	display: block;
}

.dt-app-list__link {
	transition: all 0.3s ease;
	padding: 10px;
	border-radius: 0.4rem;
	border: 1px solid transparent;
	color: #212121;
}

@media (prefers-reduced-motion: reduce) {
	.dt-app-list__link {
		transition: none;
	}
}

.dt-app-list__link:hover,
.dt-app-list__link:focus {
	border-color: #e9ecef;
}

.dt-app-list__link>img {
	display: inline-block;
}

.dt-app-list__text:last-child {
	margin-top: 10px;
}

.dt-module {
	margin-bottom: 0;
	overflow: hidden;
}

@media (min-width: 768px) {
	.dt-module {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media (max-width: 767.98px) {
	.dt-module {
		margin: -4.4rem -3.2rem;
		border-radius: 0;
	}
}

.dt-module__container {
	position: relative;
	/* z-index: 1; */
	height: 100%;
}

@media (min-width: 768px) {
	.dt-module__container {
		max-width: calc(100% - 230px);
		flex: 1 0 auto;
		-ms-flex: 1 0 auto;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
		/* z-index: 1050; */
	}
}

@media (max-width: 767.98px) {
	.dt-module__container {
		max-width: none;
		width: 100%;
	}
}

.dt-module__sidebar {
	position: relative;
	z-index: 2;
}

@media (min-width: 768px) {
	.dt-module__sidebar {
		max-width: 230px;
		flex: 0 0 230px;
		-ms-flex: 0 0 230px;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
		border-right: 1px solid #ddd;
		min-height: 100%;
	}
}

@media (max-width: 767.98px) {
	.dt-module__sidebar {
		border-right: 0 none;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
	}

	.dt-module__sidebar-header {
		padding: 0 2.6rem;
		border-color: transparent !important;
	}
}

.dt-module__sidebar-header .quick-menu-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: end;
	justify-content: flex-end;
	font-size: 0;
	margin-right: -9px;
}

@media (min-width: 768px) {
	.dt-module__sidebar-header .quick-menu-list {
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (max-width: 767.98px) {
	.dt-module__sidebar-header .quick-menu-list .search-box {
		padding: 1.2rem 0;
		margin-right: auto;
		width: 280px;
	}
}

@media (max-width: 575.98px) {
	.dt-module__sidebar-header .quick-menu-list .search-box {
		width: 150px;
	}
}

.dt-module__sidebar-header .quick-menu-list .quick-menu {
	display: block;
	font-size: 2.2rem;
	padding-left: 9px;
	padding-right: 9px;
}

@media (max-width: 767.98px) {
	.dt-module__sidebar-header .quick-menu-list .quick-menu {
		padding-bottom: 2rem;
		padding-top: 2rem;
	}

	.dt-module__sidebar-header .quick-menu-list .quick-menu.active {
		background-color: #ff4081;
		color: #fff;
	}

	.dt-module__sidebar-header .quick-menu-list .quick-menu.active .icon-menu:before {
		content: "\e08a";
		font-weight: bold !important;
	}

	.dt-module__sidebar-header .quick-menu-list .quick-menu.active a {
		color: #fff;
	}
}

.dt-module__sidebar-content .action-area {
	padding-left: 2.6rem;
	padding-right: 2.6rem;
}

@media (max-width: 767.98px) {
	.dt-module__sidebar-content {
		display: none;
	}
}

.dt-module:not(.dt-module--chat) .dt-module__sidebar-content {
	overflow-y: auto;
}

.dt-module-side-nav__header {
	position: relative;
	text-transform: uppercase;
	margin: 0 0 20px 0;
	color: #314266;
	font-size: 16px;
	font-weight: 700;
}

.dt-module-side-nav__item.active .dt-module-side-nav__link {
	color: var(--primary);
}

.dt-module-side-nav__item+.dt-module-side-nav__header {
	margin-top: 2.4rem;
}

.dt-module-side-nav+.dt-contacts {
	margin-top: 3rem;
}

.dt-module-side-nav__more {
	padding: 1rem 2.6rem;
}

.dt-module-side-nav__link {
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1;
	text-transform: capitalize;
	white-space: nowrap;
	color: #314266;
	transition: all 0.3s ease;
	font-size: 15px;
	margin-bottom: 20px;
}

.dt-module-side-nav__link svg {
	fill: #95a6b7;
}

.dt-module-side-nav__link:hover svg,
.dt-module-side-nav__item.active .dt-module-side-nav__link svg {
	fill: var(--primary);
}

.dt-module-side-nav__link i {
	font-size: 20px;
}

.dt-module-side-nav__link:hover,
.dt-module-side-nav__link:focus,
.dt-module-side-nav__link:active {
	color: var(--primary);
}

.dt-module-side-nav__text {
	display: inline-block;
	margin-left: 10px;
}

.dt-module__header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 1.2rem 3.2rem;
	border-bottom: 1px solid #ddd;
	z-index: 1050;
}

@media (min-width: 768px) {
	.dt-module__header {
		min-height: 8.2rem;
	}
}

.dt-module__content {
	flex: 1;
	-ms-flex: 1;
	overflow-y: auto;
}

.dt-module__content-inner {
	padding: 3.2rem;
}

.dt-module__title {
	position: relative;
	margin-bottom: 0;
}

.dt-module__drawer.dt-drawer {
	position: absolute;
	z-index: 100 !important;
	height: 100%;
	width: 64%;
	background-color: #fff;
}

.right-drawer {
	width: 325px !important;
}

@media (max-width: 767.98px) {
	.dt-module__drawer.dt-drawer {
		width: 90%;
	}
}

.dt-module__drawer.dt-drawer.open+.dt-backdrop {
	position: absolute;
	z-index: 99;
}

.dt-module__drawer-inner {
	height: 100%;
}

.dt-module__drawer-header {
	padding: 2rem 2.2rem;
	height: 6.5rem;
}

.dt-actionable-drawer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex: 1;
	-ms-flex: 1;
	height: 100%;
}

.dt-actionable-drawer .dt-notification.fade:not(.show) {
	display: none;
}

.theme-dark .dt-actionable-drawer .search-result:hover,
.theme-dark .dt-actionable-drawer .search-result:focus {
	background-color: rgba(81, 45, 168, 0.2);
}

.dt-actionable-drawer .search-result {
	padding: 6px 4px;
}

.dt-actionable-drawer .search-result a {
	color: #212121;
}

.dt-actionable-drawer .search-result:hover,
.dt-actionable-drawer .search-result:focus {
	background-color: #e9ecef;
}

.dt-actionable-drawer .search-result+.search-result {
	margin-top: 1.5rem;
}

.dt-action-bar {
	position: relative;
	z-index: 2;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 6rem;
	flex: 0 0 6rem;
	-ms-flex: 0 0 6rem;
	height: calc(100% - 6.5rem);
}

.dt-action-nav__item.active .dt-action-nav__link {
	background-color: #ff4081;
	color: #fff;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

.dt-action-nav__link {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 1rem 1.2rem 1rem 2.2rem;
	line-height: 1;
	white-space: nowrap;
	color: #212121;
	transition: all 0.3s ease;
}

.dt-action-nav__link .icon,
.dt-action-nav__link i {
	font-size: 2rem;
}

.dt-action-nav__link:hover,
.dt-action-nav__link:focus,
.dt-action-nav__link:active {
	color: #ff4081;
}

.dt-action-content-wrapper {
	position: relative;
	z-index: 1;
	max-width: calc(100% - 6rem);
	flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	height: calc(100% - 6.5rem);
}

.dt-action-content {
	padding: 0 2.6rem 2.6rem;
	height: 100%;
}

.dt-customizer {
	position: relative;
	z-index: 1501;
	width: 276px;
	background-color: #fff;
}

.dt-customizer-toggle {
	position: fixed;
	top: 130px;
	right: 0;
	z-index: 100;
}

@media (max-width: 575.98px) {
	.dt-customizer-toggle {
		top: 165px;
	}
}

.dt-customizer-toggle a {
	transition: all 0.5s ease;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 4rem;
	width: 6rem;
	font-size: 2.5rem;
	background-image: linear-gradient(135deg, var(--primary), #ff4081);
	background-repeat: repeat-x;
	color: #fff;
}

@media (prefers-reduced-motion: reduce) {
	.dt-customizer-toggle a {
		transition: none;
	}
}

.dt-customizer-toggle a:hover,
.dt-customizer-toggle a:focus {
	background-image: linear-gradient(90deg, var(--primary), #ff4081);
	background-repeat: repeat-x;
}

.dt-customizer__inner {
	height: 100%;
}

.dt-customizer__header {
	position: relative;
	z-index: 2;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	padding: 2rem;
	min-height: 72px;
	box-shadow: 0 2px 2px 0 rgba(117, 117, 117, 0.1);
}

.dt-customizer__header .close {
	margin-left: auto;
	font-size: 3.5rem;
	font-weight: normal;
	line-height: 0.8;
}

.dt-customizer__header .close:focus {
	outline: none;
}

.dt-customizer__body {
	height: calc(100% - 72px);
	overflow-y: auto;
}

.dt-customizer__body-inner {
	padding: 3rem 2rem;
}

.dt-customizer__body section {
	margin-bottom: 3rem;
}

.dt-customizer__body .dt-list-sm {
	margin-left: -5px;
	margin-right: -5px;
}

.dt-customizer__body .dt-list-sm>.dt-list__item {
	padding-left: 5px;
	padding-right: 5px;
}

.dt-customizer .choose-option {
	position: relative;
}

.dt-customizer .choose-option__icon {
	display: block;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.dt-customizer .choose-option__icon:not(:last-child) {
	margin-bottom: 6px;
}

.dt-customizer .choose-option.active .choose-option__icon {
	box-shadow: 0 5px 10px 0 rgba(168, 168, 168, 0.28);
	transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.dt-customizer .choose-option.active .choose-option__icon {
		transition: none;
	}
}

.dt-customizer .choose-option.active .choose-option__icon:after {
	content: "";
	position: absolute;
	right: -3px;
	top: -3px;
	z-index: 2;
	height: 14px;
	width: 14px;
	display: inline-block;
	background-image: url("../images/customizer-icons/check.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.dt-customizer .choose-option__name {
	font-size: 12px;
	color: #757575;
	text-transform: capitalize;
}

.dt-customizer .dt-color-option {
	position: relative;
	display: block;
	cursor: pointer;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 3px solid #fff;
	background-color: #f4f4f4;
}

.dt-customizer .dt-color-option:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 17px;
	height: 100%;
	border-top-left-radius: 17px;
	border-bottom-left-radius: 17px;
}

.dt-customizer .dt-color-option.active {
	border-color: #dbdbdb;
}

.dt-customizer .dt-color-option.active:after {
	content: "";
	position: absolute;
	right: -3px;
	top: -3px;
	z-index: 2;
	height: 14px;
	width: 14px;
	display: inline-block;
	background-image: url("../images/customizer-icons/check.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.dt-customizer .dt-color-options>li:nth-child(1) .dt-color-option {
	background-color: #ff4081;
}

.dt-customizer .dt-color-options>li:nth-child(1) .dt-color-option:before {
	background-color: var(--primary);
}

.dt-customizer .dt-color-options>li:nth-child(2) .dt-color-option {
	background-color: #189fde;
}

.dt-customizer .dt-color-options>li:nth-child(2) .dt-color-option:before {
	background-color: #2ac174;
}

.dt-customizer .dt-color-options>li:nth-child(3) .dt-color-option {
	background-color: #0683e5;
}

.dt-customizer .dt-color-options>li:nth-child(3) .dt-color-option:before {
	background-color: #f06f11;
}

.dt-customizer .dt-color-options>li:nth-child(4) .dt-color-option {
	background-color: #f7b528;
}

.dt-customizer .dt-color-options>li:nth-child(4) .dt-color-option:before {
	background-color: #d61f1f;
}

.dt-customizer .dt-color-options>li:nth-child(5) .dt-color-option {
	background-color: #56b5d8;
}

.dt-customizer .dt-color-options>li:nth-child(5) .dt-color-option:before {
	background-color: #7b18f6;
}

.dt-customizer .dt-color-options>li:nth-child(6) .dt-color-option {
	background-color: #cbb444;
}

.dt-customizer .dt-color-options>li:nth-child(6) .dt-color-option:before {
	background-color: #2f46bc;
}

.dt-customizer .dt-color-options>li:nth-child(7) .dt-color-option {
	background-color: #36272d;
}

.dt-customizer .dt-color-options>li:nth-child(7) .dt-color-option:before {
	background-color: #e5281a;
}

.dt-customizer .dt-color-options>li:nth-child(8) .dt-color-option {
	background-color: #eda722;
}

.dt-customizer .dt-color-options>li:nth-child(8) .dt-color-option:before {
	background-color: #40528c;
}

.dt-customizer .dt-color-options>li:nth-child(9) .dt-color-option {
	background-color: #f95738;
}

.dt-customizer .dt-color-options>li:nth-child(9) .dt-color-option:before {
	background-color: #0857ad;
}

.dt-customizer .dt-color-options>li:nth-child(10) .dt-color-option {
	background-color: #72bef0;
}

.dt-customizer .dt-color-options>li:nth-child(10) .dt-color-option:before {
	background-color: #0085c1;
}

.dt-sidebar {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #eff3fa;
	/* box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 10px 0px; */
	transition: all 0.2s ease;
	padding-left: 17px;
}

@media (prefers-reduced-motion: reduce) {
	.dt-sidebar {
		transition: none;
	}
}

@media screen and (min-width: 1367px) {
	.dt-sidebar {
		width: calc(244px);
		padding-right: 15px;
	}
}

.dt-sidebar__container {
	width: 100%;
	padding-bottom: 3rem;
}

.dt-sidebar--fixed .dt-sidebar {
	position: fixed;
	z-index: 1000;
	height: calc(100vh);
	overflow-y: auto;
}

.dt-sidebar--fixed .dt-sidebar+.dt-content-wrapper {
	transition: all 0.2s ease;
	margin-left: 230px;
}

/* .bottom-footer{
  width: 100%;
} */

.theme-card:has(.profile-cards) {
	position: relative;
}

.theme-card:has(.profile-cards)>.profile-cards {
	position: absolute;
	right: 11px;
	top: 133px;
	z-index: 1;
}

.profile-tel-input {
	position: relative;
}

.profile-tel-input>.iti.iti--allow-dropdown {
	width: 100%;
}

#plus-sign {
	position: absolute;
	right: 0px;
	top: 0px;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 1;
	color: #fff;
	background-color: #00c9fd;
	border-radius: 7px;
	justify-content: center;
	width: 15%;
}

#phoneVerificationButton {
	position: absolute;
	right: 0px;
	top: 0px;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 1;
	color: #fff;
	background-color: #00c9fd !important;
	border-radius: 7px !important;
	justify-content: center !important;
	width: 25%;
}

#phoneConfirmationButton {
	position: absolute;
	right: 17px;
	height: 50px;
	bottom: 16px;
	display: grid;
	place-content: center;
	border-radius: 7px !important;
}

#phoneVerfication {
	background-color: transparent;
}

.profile-tel-input {
	margin-bottom: 16px;
}

@media (max-width: 768px) {
	.theme-card:has(.profile-cards)>.profile-cards {
		right: 0px;
		top: 240px;
	}

	.about-card-h1:has(~ .profile-tabs-h1)~.profile-tabs-h1 {
		height: 250px;
	}
}

@media (max-width: 576px) {
	.theme-card:has(.profile-cards)>.profile-cards {
		top: 275px;
	}

	.about-card-h1:has(~ .profile-tabs-h1)~.profile-tabs-h1 {
		height: 275px;
	}
}

@media (max-width: 430px) {
	.theme-card:has(.profile-cards)>.profile-cards {
		top: 305px;
	}
}

@media (max-width: 400px) {
	.theme-card:has(.profile-cards)>.profile-cards {
		top: 325px;
	}

	.about-card-h1:has(~ .profile-tabs-h1)~.profile-tabs-h1 {
		height: 300px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dt-sidebar--fixed .dt-sidebar+.dt-content-wrapper {
		transition: none;
	}
}

@media screen and (min-width: 1367px) {
	.dt-sidebar--fixed .dt-sidebar+.dt-content-wrapper {
		margin-left: calc(224px);
	}
}

.dt-side-nav__header {
	position: relative;
	text-transform: capitalize;
	padding: 0px 0 0px 20px;
	line-height: 1.2;
	color: #d1c4e9;
	font-size: 1.4rem;
}

.dt-sidebar__notification {
	padding-left: 2rem;
}

.dt-side-nav__header:not(:first-child) {
	padding-top: 0px;
}

.dt-side-nav__header:not(:first-child):before {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	/* background-color: #383245; */
	/* margin-bottom: 15px; */
}

.dt-side-nav>.dt-side-nav__item.selected>a,
.dt-side-nav>.dt-side-nav__item.open>a {
	/* color: rgb(32, 42, 54); */
	color: var(--primary);
}

.dt-side-nav>.dt-side-nav__item>.dt-side-nav__sub-menu {
	display: none;
}

.dt-side-nav>.dt-side-nav__item.open>.dt-side-nav__sub-menu {
	display: block;
}

.dt-side-nav__link {
	margin-bottom: 2px;
	height: 53px;
	display: flex;
	align-items: center;
	padding: 0 19px;
}

.dt-active,
.dt-side-nav__link:hover,
.dt-side-nav__item.selected .dt-side-nav__link {
	/* background: linear-gradient(to right top, #000000, #090909, #131313, #1A1A1A, #202020)!important; */
	background-color: #00c9fd !important;
	color: #fff !important;
	box-shadow: 0px 6px 6px #00c9fd45;
	border-radius: 10px;
}

.dt-active .aside-svgs,
.dt-side-nav__link:hover .aside-svgs,
.dt-side-nav__item.selected .dt-side-nav__link .aside-svgs {
	fill: white !important;
}

.dt-side-nav__text {
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	flex: 1;
	-ms-flex: 1;
	text-align: left;
	font-size: 15px;
	letter-spacing: 0.3px;
	color: #95a6b7;
	margin-left: 16px;
}

.dt-active .dt-side-nav__text,
.dt-side-nav__link:hover .dt-side-nav__text,
.dt-side-nav__link:hover:after,
.dt-side-nav__item.selected .dt-side-nav__link .dt-side-nav__text,
.dt-side-nav__item.selected .dt-side-nav__link::after {
	color: white;
}

.aside-svgs {
	fill: #95a6b7;
}

.dt-side-nav__link .icon,
.dt-side-nav__link i {
	margin-right: 12px;
}

.dt-side-nav__arrow:after {
	content: "\f107";
	font-family: "fontello";
	color: #95a6b7;
	transition: all 100ms ease;
}

.dt-side-nav__link_sub {
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	flex: 1;
	-ms-flex: 1;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.3px;
	color: #95a6b7;
	margin: 7px 0 7px 55px;
}

.dt-side-nav__link_sub.active {
	color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
	.dt-side-nav__arrow:after {
		transition: none;
	}
}

.dt-side-nav__item.open .dt-side-nav__arrow:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(270deg);
}

.dt-side-nav__sub-menu .dt-side-nav__link {
	color: grey;
	padding-left: 50px;
}

.dt-side-nav__sub-menu .dt-side-nav__link.active {
	/* background: linear-gradient(to right top, #000000, #090909, #131313, #1A1A1A, #202020)!important; */
	background-color: var(--primary) !important;
	color: white;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	padding-right: 28px;
}

.dt-side-nav__sub-menu .dt-side-nav__link.active:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1.8rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 50%;
	display: inline-block;
	height: 6px;
	width: 6px;
	background-color: #fff;
}

.dt-side-nav__sub-menu .dt-side-nav__link:hover,
.dt-side-nav__sub-menu .dt-side-nav__link:focus,
.dt-side-nav__sub-menu .dt-side-nav__link:active {
	/* color: var(--primary); */
	color: rgb(32, 42, 54);
}

.dt-sidebar--fixed:not(.dt-header--fixed):not(.theme-semidark):not(.theme-dark) .dt-sidebar {
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05);
}

.dt-sidebar--fixed:not(.dt-header--fixed):not(.theme-semidark):not(.theme-dark) .dt-sidebar__container {
	padding-right: 2rem;
}

.dt-sidebar--fixed:not(.dt-header--fixed):not(.theme-semidark):not(.theme-dark) .dt-header {
	box-shadow: none;
}

.dt-sidebar--fixed:not(.dt-header--fixed):not(.theme-semidark):not(.theme-dark) .dt-header .dt-brand {
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid #ddd;
}

.dt-sidebar--fixed:not(.dt-header--fixed):not(.theme-semidark):not(.theme-dark) .dt-header .dt-header__toolbar {
	margin-left: calc(230px);
	margin-right: 20px;
	border-bottom: 1px solid #ddd;
	padding-left: 12px;
	padding-right: 12px;
}

@media screen and (min-width: 1367px) {
	.dt-sidebar--fixed:not(.dt-header--fixed):not(.theme-semidark):not(.theme-dark) .dt-header .dt-header__toolbar {
		margin-left: calc(280px);
	}
}

.dt-sidebar--folded .dt-brand,
.dt-sidebar--folded .dt-brand__logo,
.dt-sidebar--folded .dt-sidebar,
.dt-sidebar--folded .dt-side-nav__text,
.dt-sidebar--folded .dt-content-wrapper,
.dt-sidebar--folded .dt-header__toolbar {
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

@media (prefers-reduced-motion: reduce) {

	.dt-sidebar--folded .dt-brand,
	.dt-sidebar--folded .dt-brand__logo,
	.dt-sidebar--folded .dt-sidebar,
	.dt-sidebar--folded .dt-side-nav__text,
	.dt-sidebar--folded .dt-content-wrapper,
	.dt-sidebar--folded .dt-header__toolbar {
		transition: none;
	}
}

.dt-sidebar--folded .dt-content {
	margin: 20px 20px 0 10px;
}

.dt-sidebar--folded .dt-side-nav__link {
	padding: 0;
}

.dt-sidebar--folded .aside-svgs {
	margin-left: 15px;
}

.dt-sidebar--folded .dt-side-nav__text {
	margin: 0;
	visibility: hidden;
}

.dt-sidebar--folded .dt-sidebar {
	padding-left: 10px;
	padding-right: 10px;
}

.dt-sidebar--expended .dt-side-nav__text {
	visibility: visible;
	margin-left: 16px;
}

.dt-sidebar--expended .dt-side-nav__link {
	padding: 0 19px;
}

.dt-sidebar--expended .aside-svgs {
	margin-left: 0;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-brand,
.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-sidebar {
	width: 70px;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-content-wrapper,
.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-header__toolbar {
	width: calc(100% - 60px);
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-brand__logo {
	opacity: 0;
	visibility: hidden;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-side-nav__text,
.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-side-nav__arrow::after,
.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-brand__logo {
	opacity: 0;
	visibility: hidden;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-side-nav__item.open .dt-side-nav__sub-menu {
	display: none !important;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-side-nav__header .dt-side-nav__text {
	display: none;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-side-nav__header:first-child {
	padding: 0;
}

.dt-sidebar--folded:not(.dt-sidebar--expended) .dt-side-nav__header:not(:first-child):before {
	margin-bottom: 0;
}

.dt-sidebar--folded.dt-sidebar--fixed .dt-content-wrapper,
.dt-sidebar--folded.dt-sidebar--fixed .dt-header__toolbar {
	margin-left: 60px;
	width: calc(100% - 60px);
}

.dt-sidebar--folded.dt-sidebar--fixed:not(.dt-header--fixed):not(.theme-semidark):not(.theme-dark) .dt-header .dt-header__toolbar {
	margin-left: 80px;
}

.dt-drawer {
	box-shadow: -1px 0 15px -6px #c8c8c8;
	position: fixed;
	top: 0;
	bottom: 0;
	height: 100% !important;
	z-index: 1501 !important;
	-ms-touch-action: manipulation;
	-webkit-touch-callout: inherit;
	touch-action: manipulation;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
	background-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
	.dt-drawer {
		transition: none;
	}
}

.dt-drawer.position-left {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	left: 0;
	right: auto;
}

.dt-drawer.position-right {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	left: auto;
	right: 0;
}

.dt-drawer.open {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.dt-drawer.open+.dt-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	z-index: 1500;
	background: rgba(0, 0, 0, 0.4);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

@media (prefers-reduced-motion: reduce) {
	.dt-drawer.open+.dt-backdrop {
		transition: none;
	}
}

.dt-drawer.dt-sidebar {
	width: calc(260px);
	background-color: #eef2f9;
}

.dt-drawer.dt-sidebar .dt-sidebar__container {
	padding-right: 2rem;
}

.dt-drawer.dt-sidebar .dt-side-nav__link {
	padding-right: 0;
}

.dt-drawer.dt-sidebar+.dt-content-wrapper {
	margin-left: 0;
}

.dt-footer {
	background-color: #f4f4f4;
	color: #757575;
	padding: 1.2rem 3.2rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: 60px;
	max-height: 60px;
	margin-top: auto;
}

@media (min-width: 992px) {
	.dt-layout--framed {
		background-color: var(--primary);
		padding: 2rem;
		overflow: hidden !important;
	}

	.dt-layout--framed.theme-dark {
		background-color: #f2f2f2;
	}

	.dt-layout--framed.theme-semidark {
		background-color: #2a1758;
	}

	.dt-layout--framed .dt-root {
		height: calc(100vh - 2 * 2rem);
		min-height: calc(100vh - 2 * 2rem);
		border-radius: 0.8rem;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
		overflow: hidden;
		background-color: #fff;
	}

	.dt-layout--framed .dt-root__inner {
		overflow: auto;
	}

	.dt-layout--framed .dt-header {
		min-height: 72px;
	}

	.dt-layout--framed .dt-header__toolbar {
		background-color: transparent;
	}

	.dt-layout--framed .dt-sidebar {
		border-bottom-left-radius: 0.8rem;
	}

	.dt-layout--framed.dt-header--fixed .dt-main {
		overflow: auto;
	}

	.dt-layout--framed.dt-header--fixed .dt-header {
		width: calc(100% - 2 * 2rem);
		border-top-left-radius: 0.8rem;
		border-top-right-radius: 0.8rem;
	}

	.dt-layout--framed.dt-sidebar--fixed .dt-sidebar {
		height: calc(100vh - (72px + 2 * 2rem));
	}

	.dt-layout--framed .dt-brand {
		border-top-left-radius: 0.8rem;
	}

	.dt-layout--framed .dt-header__toolbar {
		border-top-right-radius: 0.8rem;
	}

	.dt-layout--framed .compose-mail-box,
	.dt-layout--framed .dt-customizer-toggle {
		position: absolute;
	}

	.dt-layout--framed .dt-drawer {
		position: absolute;
	}

	.dt-layout--framed .dt-drawer.position-right {
		border-top-right-radius: 0.8rem;
		border-bottom-right-radius: 0.8rem;
		opacity: 0;
		visibility: hidden;
	}

	.dt-layout--framed .dt-drawer.position-right.open {
		opacity: 1;
		visibility: visible;
	}
}

@media (min-width: 1300px) {
	.dt-layout--boxed {
		max-width: 1280px;
	}
}

@media (min-width: 1600px) {
	.dt-layout--boxed {
		max-width: 1500px;
	}
}

@media (min-width: 1300px) {
	.dt-layout--boxed {
		position: relative;
		background-color: var(--primary);
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
		overflow: hidden !important;
	}

	.dt-layout--boxed.theme-dark {
		background-color: #fff;
	}

	.dt-layout--boxed.theme-semidark {
		background-color: #2a1758;
	}

	.dt-layout--boxed .dt-root {
		overflow: hidden;
		background-color: #fff;
		height: 100vh;
	}

	.dt-layout--boxed .dt-root__inner {
		overflow: auto;
	}

	.dt-layout--boxed .dt-header {
		min-height: 72px;
	}

	.dt-layout--boxed.dt-header--fixed .dt-header {
		position: absolute;
	}

	.dt-layout--boxed.dt-header--fixed .dt-main {
		overflow: auto;
	}

	.dt-layout--boxed .compose-mail-box,
	.dt-layout--boxed .dt-customizer-toggle {
		position: absolute;
	}

	.dt-layout--boxed .dt-drawer {
		position: absolute;
	}

	.dt-layout--boxed .dt-drawer.position-left,
	.dt-layout--boxed .dt-drawer.position-right {
		opacity: 0;
		visibility: hidden;
	}

	.dt-layout--boxed .dt-drawer.position-left.open,
	.dt-layout--boxed .dt-drawer.position-right.open {
		opacity: 1;
		visibility: visible;
	}
}

.dt-module__list-item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px 4px;
}

.dt-module__list-item-content {
	flex: 1;
	-ms-flex: 1 1 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
	color: #212121;
}

.dt-module__list-item-info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 20px;
}

@media (max-width: 575.98px) {
	.dt-module__list-item-info .badge-group {
		display: none;
	}
}

.dt-module__list-item-info>*:not(:last-child) {
	margin-right: 8px;
}

.dt-module__list-item:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.dt-module__list:not(:last-child) {
	margin-bottom: 3.8rem;
}

.add-comment-box {
	position: relative;
	padding: 2.2rem 3.2rem;
	border-top: 1px solid #ddd;
}

.add-comment-box .action-tools {
	top: -20px;
	z-index: 2;
	right: 3.2rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.add-comment-box .action-tools *:not(:last-child) {
	margin-right: 15px;
}

.add-comment-box textarea {
	height: 4.2rem;
}

.user-info-card {
	position: absolute;
	z-index: 1100;
	display: none;
	margin-bottom: 0;
}

.user-detail {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex: 1;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.user-detail:not(:last-child):not([class*="mb-"]) {
	margin-bottom: 4px;
}

.user-detail .user-name,
.user-detail .designation {
	display: block;
}

.user-detail .user-name {
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.18px;
	color: #314266;
}

@media (max-width: 575.98px) {
	.user-detail .user-name {
		font-size: 1.8rem;
	}
}

.user-detail .designation {
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.18px;
	color: #aaaaaa;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 575.98px) {
	.user-detail .designation {
		font-size: 1.6rem;
	}
}

.dt-chat__item {
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 15px;
}

.dt-chat__item .dt-avatar {
	margin-right: 12px;
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.dt-chat__item .dt-chat__message {
	position: relative;
	padding: 1.8rem 2.6rem;
	margin-bottom: 6px;
	background-color: #3a2078;
	border: 1px solid transparent;
	border-radius: 12px;
	max-width: 320px;
	color: #fff;
}

.dt-chat__item .dt-chat__message:last-child {
	border-radius: 12px 12px 12px 0;
	margin-bottom: 0;
}

.dt-chat__item .dt-chat__message:last-child:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: -9px;
	z-index: 1;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" style="enable-background:new 0 0 14.9 17.3;"><path fill="%233a2078" d="M9.2,0c0,6.2-3.6,11.7-8.4,15c-0.4,0.3-0.2,0.9,0.3,0.9h8.1"></path><path fill="%233e2280" d="M9.2,16.4H1.1c-0.4,0-0.8-0.3-1-0.7c-0.1-0.4,0-0.9,0.4-1.1C5.3,11.3,8.2,5.8,8.2,0h1c0,6.2-3,11.9-8.1,15.4   l8.1,0V16.4z"></path></svg>') no-repeat;
	width: 9px;
	height: 16px;
}

.dt-chat__item.reply {
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.dt-chat__item.reply .dt-avatar {
	margin-right: 0;
	margin-left: 12px;
}

.dt-chat__item.reply .dt-chat__message {
	background-color: #fff;
	border-color: #ddd;
	color: #757575;
}

.dt-chat__item.reply .dt-chat__message:last-child {
	border-radius: 12px 12px 0 12px;
}

.dt-chat__item.reply .dt-chat__message:last-child:after {
	left: auto;
	right: -9px;
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" style="enable-background:new 0 0 14.9 17.3;"><path fill="%23fff" d="M9.2,0c0,6.2-3.6,11.7-8.4,15c-0.4,0.3-0.2,0.9,0.3,0.9h8.1"></path><path fill="%23ddd" d="M9.2,16.4H1.1c-0.4,0-0.8-0.3-1-0.7c-0.1-0.4,0-0.9,0.4-1.1C5.3,11.3,8.2,5.8,8.2,0h1c0,6.2-3,11.9-8.1,15.4   l8.1,0V16.4z"></path></svg>') no-repeat;
}

.dt-contacts__container-inner {
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
}

.dt-contacts:not(:last-child) {
	margin-bottom: 2.6rem;
}

.dt-contacts .dt-contact:hover,
.dt-contacts .dt-contact:focus {
	background-color: #e5def6 !important;
	cursor: pointer;
}

/* .dt-contact-active {
  background-color: #e5def6!important;
  cursor: pointer
} */

.dt-contacts .dt-contact:hover .dt-contact__title,
.dt-contacts .dt-contact:focus .dt-contact__title {
	color: var(--primary);
}

.theme-dark .dt-contacts .dt-contact:hover,
.theme-dark .dt-contacts .dt-contact:focus {
	background-color: rgba(81, 45, 168, 0.2);
}

.dt-contact {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	padding: 0.8rem 2.6rem;
}

.dt-contact__heading {
	padding-left: 2.6rem;
	padding-right: 2.6rem;
	margin-bottom: 4px;
	color: #757575;
}

.dt-contact__info {
	flex: 1;
	-ms-flex: 1;
	max-width: 100%;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dt-contact .dt-avatar+.dt-contact__info {
	padding-left: 8px;
}

.dt-contact__title {
	margin-bottom: 2px;
	font-weight: 500;
}

.dt-contact__desc {
	margin-bottom: 0;
	font-size: 1.2rem;
}

.contact-modal .modal-header {
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
	background-color: #212121;
	padding: 6px 16px;
}

.contact-modal .modal-header .close,
.contact-modal .modal-header .modal-title {
	color: #fff;
}

.contact-modal .modal-header .close {
	font-size: 1.4rem;
	padding: 0.5rem;
	margin: -0.5rem -0.5rem -0.5rem auto;
	line-height: inherit;
}

.contact-modal .modal-body {
	padding: 20px 15px;
}

.contact-modal textarea,
.contact-modal input {
	border-radius: 0;
	box-shadow: none;
	border: 0 none;
	padding-left: 0;
	padding-right: 0;
}

.contact-modal textarea:focus,
.contact-modal input:focus {
	box-shadow: none;
	outline: none;
}

.contact-modal input {
	border-bottom: 1px solid #ddd;
}

.contact-modal input:focus {
	border-color: #212121;
}

.mail-detail-list .dt-module__list-item .dt-module__list-item-content {
	cursor: pointer;
}

.mail-detail-list .dt-module__list-item .dt-module__list-item-content br {
	display: none;
}

.mail-detail-list .dt-module__list-item.open {
	padding-top: 20px;
	padding-bottom: 20px;
}

.mail-detail-list .dt-module__list-item.open .dt-avatar,
.mail-detail-list .dt-module__list-item.open .dt-module__list-item-info {
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.mail-detail-list .dt-module__list-item.open .dt-module__list-item-content {
	overflow: visible;
	text-overflow: initial;
	white-space: normal;
	cursor: initial;
}

.mail-detail-list .dt-module__list-item.open .dt-module__list-item-content br {
	display: inline-block;
}

.compose-mail-box {
	width: 55rem;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
	position: fixed;
	right: 4rem;
	bottom: 0;
	z-index: 1000;
	display: none;
}

@media (max-width: 767.98px) {
	.compose-mail-box {
		width: 100%;
		right: 0;
	}
}

.compose-mail-box__header {
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
	background-color: #212121;
	color: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 6px 16px;
}

.compose-mail-box__body {
	background-color: #fff;
	padding: 20px 15px;
}

.compose-mail-box textarea,
.compose-mail-box input {
	border-radius: 0;
	box-shadow: none;
	border: 0 none;
	padding-left: 0;
	padding-right: 0;
}

.compose-mail-box textarea:focus,
.compose-mail-box input:focus {
	box-shadow: none;
	outline: none;
}

.compose-mail-box input {
	border-bottom: 1px solid #ddd;
}

.compose-mail-box input:focus {
	border-color: #212121;
}

.compose-mail-box textarea {
	height: 220px;
	resize: none;
}

@media (max-width: 767.98px) {
	.compose-mail-box textarea {
		height: 180px;
	}
}

.dt-avatar>img {
	width: 100%;
}

.dt-avatar__outline {
	border: 1px solid #ddd;
}

.dt-avatar__shadow {
	box-shadow: 0 0 16px 0 rgba(92, 92, 92, 0.12);
}

.dt-avatar-name {
	display: block;
	line-height: 1;
}

.dt-avatar-name:not(:last-child) {
	margin-bottom: 2px;
}

.dt-avatar-name+.meta-date {
	font-size: 12px;
	display: block;
}

.dt-avatar-info {
	padding-right: 23px;
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.dt-avatar-status {
	position: relative;
}

.dt-avatar-status .dt-avatar+.dot-shape {
	position: absolute;
	bottom: 0;
	right: 0;
	border: 2px solid #fff;
}

.dt-avatar-wrapper {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.dt-avatar-wrapper:not(.flex-column) .dt-avatar-status+.dt-avatar-info,
.dt-avatar-wrapper:not(.flex-column) .dt-avatar+.dt-avatar-info {
	padding-left: 8px;
}

.badge-sm {
	padding: 3px 6px;
}

.badge-group .badge+.badge {
	margin-left: 0.6rem;
}

.badge-light {
	color: #757575;
}

.badge-circle-animate {
	transition: all 150ms ease-in-out;
	font-size: 0;
	border-radius: 50%;
	padding: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
	.badge-circle-animate {
		transition: none;
	}
}

.badge-circle-animate:hover,
.badge-circle-animate:focus {
	font-size: 1.2rem;
	border-radius: 0.4rem;
}

.badge-circle-animate.badge-pill:hover,
.badge-circle-animate.badge-pill:focus {
	font-size: 1.2rem;
	border-radius: 0.8rem;
}

.badge-top-left,
.badge-top-right {
	position: absolute;
	top: 0;
	z-index: 1;
	padding: 0.6rem 1rem;
}

.badge-top-left {
	left: 0;
	border-radius: 0.4rem 0 0.8rem 0;
}

.badge-top-right {
	right: 0;
	border-radius: 0 0.4rem 0 0.8rem;
}

.blockquote {
	color: #212121;
}

.blockquote:not(:last-child) {
	margin-bottom: 5.2rem;
}

.blockquote-footer {
	font-size: 1.4rem;
}

.btn {
	box-shadow: none;
}

.note-btn-group .btn-light {
	color: #212529 !important;
	background-color: #e5e5e5 !important;
	border-color: #e5e5e5 !important;
}

.note-btn-group .btn-light:hover {
	color: #212529 !important;
	background-color: #d2d2d2 !important;
	border-color: #ccc !important;
}

.btn:focus,
.btn.focus {
	box-shadow: none;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
	box-shadow: none;
}

.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus {
	box-shadow: none;
}

.btn-shadow {
	box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
}

.btn-shadow:hover,
.btn-shadow:focus {
	box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
}

.btn-shadow:active {
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15) !important;
}

.btn-rounded {
	border-radius: 50px;
}

.btn-default {
	background-color: #fff;
	color: var(--primary);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color: #fcfcfc;
	color: #472894;
}

.btn-group .btn-default {
	background-color: #fff;
	color: var(--primary);
}

.btn-group .btn-default.active {
	background-color: var(--primary);
	color: #fff;
}

.btn-xs {
	padding: 4px 8px;
	font-size: 12px;
}

.dt-fab-btn {
	padding: 0;
}

.compose-btn {
	padding: 0.8rem 2.6rem;
}

.dt-card {
	display: block;
}

.dt-card__header {
	margin-bottom: 3rem;
	padding: 2.8rem 3.2rem 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
}

.dt-card__header:first-child {
	border-radius: calc(0.4rem - 0px) calc(0.4rem - 0px) 0 0;
}

.dt-card__header .dt-card__tools {
	margin-left: 5px;
}

.dt-card__header .dt-card__tools .nav.nav-sm {
	margin-right: -10px;
}

.dt-card__header .dt-card__heading {
	flex: 1;
	-ms-flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dt-card__heading .dt-card__title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dt-card__body {
	padding: 3.2rem 3.2rem;
	display: block;
}

.dt-card__body+.dt-card__body,
.dt-card__header+.dt-card__body {
	padding-top: 0;
}

.dt-card__more {
	display: inline-block;
	font-weight: 400;
}

.dt-card__title {
	margin-bottom: 0;
	font-weight: 500;
	text-transform: capitalize;
	color: #212121;
}

.dt-card__title:not([class*="f-"]) {
	font-size: 1.6rem;
}

@media (max-width: 575.98px) {
	.dt-card__title:not([class*="f-"]) {
		font-size: 1.8rem;
	}
}

.dt-card__full-height {
	height: calc(100% - 3.2rem);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.dt-card__full-height .card-body,
.dt-card__full-height .dt-chart,
.dt-card__full-height .dt-chart__body,
.dt-card__full-height .dt-card__body {
	flex: 1;
	-ms-flex: 1 1 auto;
}

.dt-card__full-height .dt-chart__body:not(:first-child) {
	-ms-flex: initial;
	flex: initial;
	margin-top: auto;
}

.dt-card-carousel .card {
	box-shadow: none;
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	.header-sm-inline {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.header-sm-inline .dt-card__tools {
		margin-left: 0;
		padding-top: 1rem;
	}

	.header-sm-inline .dt-card__tools .nav.nav-sm {
		margin-left: -10px;
	}
}

.action-tools {
	position: absolute;
	top: 1.8rem;
	right: 2.4rem;
}

.action-tools .dt-checkbox,
.action-tools .dropdown {
	display: inline-block;
}

.action-tools .dropdown {
	margin-left: 8px;
}

.card {
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	margin-bottom: 3.2rem;
}

.card .lead {
	font-size: 1.8rem;
}

.card .list-group-item {
	padding-left: 3.2rem;
	padding-right: 3.2rem;
}

.card .btn+.card-link,
.card .btn+.btn:not(.btn-block),
.card .card-link+.card-link,
.card .card-link+.btn:not(.btn-block) {
	margin-left: 1.6rem;
}

.card-image {
	position: relative;
	height: auto;
}

.card-image .dt-fab-btn {
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
	position: absolute;
	left: 3.2rem;
	bottom: 0;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.card-image .dt-fab-btn.right-side {
	left: auto;
	right: 3.2rem;
}

.card-title {
	margin-bottom: 1.6rem;
	font-size: 2rem;
}

.card-subtitle {
	margin-top: -0.6rem;
	margin-bottom: 1rem;
	color: #999;
	font-size: 1.6rem;
}

.card-text:nth-last-of-type(1):not(:last-child) {
	margin-bottom: 2.8rem;
}

.card-header {
	padding: 1.6rem 3.2rem;
}

.card-header.card-nav {
	padding: 1.6rem 3.2rem 3.2rem;
}

.card-header-links {
	margin-right: -1.6rem;
	margin-left: -1.6rem;
	margin-bottom: -3.2rem;
}

.card-footer {
	font-size: 1.2rem;
	padding: 1.6rem 3.2rem;
}

@media (max-width: 575.98px) {
	.card-footer {
		font-size: 1.4rem;
	}
}

.card.horizontal {
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.card.horizontal .card-image,
.card.horizontal .dt-slider {
	width: 28%;
}

.card.horizontal .owl-stage-outer,
.card.horizontal .owl-carousel,
.card.horizontal .owl-stage,
.card.horizontal .owl-item {
	height: 100%;
}

.card.horizontal .card-stacked {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: calc(100% - 28%);
}

.card.horizontal .card-body {
	max-width: 100%;
}

.card.horizontal .card-body:not(:last-child) {
	width: calc(100% - 155px);
}

.card.horizontal .card-body:not(:last-child) .card-text {
	margin-right: -80px;
}

.card.horizontal .card-footer {
	width: 155px;
}

.card.horizontal img {
	-o-object-fit: cover;
	object-fit: cover;
	border-top-left-radius: 0.4rem;
	border-bottom-left-radius: 0.4rem;
}

.card.horizontal img:not([class*="size-"]) {
	min-height: 100%;
	max-height: 100%;
}

.card.horizontal .card-text:nth-last-of-type(1):not(:last-child) {
	margin-bottom: 1.2rem;
}

.card.horizontal .card-footer {
	padding-top: 3.2rem;
	padding-bottom: 3.2rem;
	padding-left: 0;
	background-color: transparent;
}

@media (max-width: 575.98px) {
	.card.horizontal {
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.card.horizontal .card-image,
	.card.horizontal .dt-slider {
		width: 100%;
	}

	.card.horizontal .owl-stage-outer,
	.card.horizontal .owl-carousel,
	.card.horizontal .owl-stage,
	.card.horizontal .owl-item {
		height: auto;
	}

	.card.horizontal .card-stacked {
		-ms-flex-flow: column nowrap;
		flex-flow: column nowrap;
		width: 100%;
	}

	.card.horizontal .card-body {
		max-width: 100%;
	}

	.card.horizontal .card-body:not(:last-child) {
		width: 100%;
	}

	.card.horizontal .card-body:not(:last-child) .card-text {
		margin-right: 0;
	}

	.card.horizontal .card-footer {
		width: 100%;
	}

	.card.horizontal img {
		-o-object-fit: cover;
		object-fit: cover;
		border-top-left-radius: 0.4rem;
		border-bottom-left-radius: 0.4rem;
	}

	.card.horizontal img:not([class*="size-"]) {
		min-height: 100%;
		max-height: 100%;
	}

	.card.horizontal .card-text:nth-last-of-type(1):not(:last-child) {
		margin-bottom: 1.2rem;
	}

	.card.horizontal .card-footer {
		padding-top: 0;
		padding-bottom: 3.2rem;
		padding-left: 3.2rem;
	}
}

.dt-intro-card {
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	overflow: hidden;
}

.dt-intro-card .card-image,
.dt-intro-card .dt-slider {
	width: 85px;
}

.dt-intro-card .card-stacked {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: calc(100% - 85px);
}

.dt-intro-card .card-body {
	max-width: 100%;
}

.dt-intro-card img {
	-o-object-fit: cover;
	object-fit: cover;
	min-height: 100%;
	max-height: 100%;
	width: 100%;
	border-top-left-radius: 0.4rem;
	border-bottom-left-radius: 0.4rem;
}

.dt-intro-card .action-area {
	padding-right: 15px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.dt-showcase-card {
	box-shadow: none;
	background-color: #f4f4f4;
}

.dt-showcase-card:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 18rem;
	background-color: transparent;
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
	transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.dt-showcase-card:before {
		transition: none;
	}
}

@media (min-width: 1200px) {
	.dt-showcase-card:before {
		height: 22rem;
	}
}

.dt-showcase-card .dt-card__title {
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1;
	text-transform: capitalize;
}

@media (min-width: 1200px) {
	.dt-showcase-card .dt-card__title {
		font-size: 2.6rem;
	}
}

.dt-showcase-card .dt-card__more,
.dt-showcase-card .dt-card__more+i,
.dt-showcase-card .dt-card__more+.icon {
	color: #212121;
}

.dt-showcase-card .dt-card__header,
.dt-showcase-card .dt-card__body {
	position: relative;
	z-index: 2;
}

@media (min-width: 576px) {
	.dt-showcase-card .dt-card__header {
		margin-bottom: 4.48rem;
		padding: 5.44rem 4.8rem 0;
	}
}

@media (min-width: 576px) {
	.dt-showcase-card .dt-card__body {
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

.dt-showcase-card .layout-container {
	transition: all 0.4s ease;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
	border-radius: 0.4rem;
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.dt-showcase-card .layout-container {
		transition: none;
	}
}

.dt-showcase-card:hover:before,
.dt-showcase-card:focus:before {
	background-color: #474b55;
}

.dt-showcase-card:hover .dt-card__more,
.dt-showcase-card:hover .dt-card__more+i,
.dt-showcase-card:hover .dt-card__more+.icon,
.dt-showcase-card:hover .dt-card__title,
.dt-showcase-card:focus .dt-card__more,
.dt-showcase-card:focus .dt-card__more+i,
.dt-showcase-card:focus .dt-card__more+.icon,
.dt-showcase-card:focus .dt-card__title {
	color: #fff;
}

.dt-showcase-card:hover .layout-container,
.dt-showcase-card:focus .layout-container {
	box-shadow: 0 12px 35px 0 rgba(0, 0, 0, 0.23);
	border-radius: 0.8rem;
}

.dt-contact-card {
	position: relative;
}

.dt-contact-card .dt-contact-info-short {
	padding: 1.2rem 1.2rem;
	transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.dt-contact-card .dt-contact-info-short {
		transition: none;
	}
}

.dt-contact-card .dt-contact-info-short:hover {
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	border-radius: 0.4rem;
}

.dt-social-card {
	position: relative;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.dt-social-card {
		transition: none;
	}
}

.dt-social-card:hover {
	box-shadow: 0 14px 17px 0 rgba(0, 0, 0, 0.12);
}

.dt-social-card .dt-card__body {
	padding-left: 7.5rem;
	padding-right: 1rem;
}

.dt-social-card .dt-social__circle {
	transition: all 0.2s ease-in-out;
	width: 14rem;
	height: 14rem;
	border-radius: 50%;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	left: -7.5rem;
	z-index: 1;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 1rem;
}

@media (prefers-reduced-motion: reduce) {
	.dt-social-card .dt-social__circle {
		transition: none;
	}
}

.dt-social-card.animate-slide .dt-social__circle {
	left: -12rem;
}

.dt-social-card.animate-slide .dt-social__circle i,
.dt-social-card.animate-slide .dt-social__circle .icon {
	transition: all 0.2s ease-in-out;
	-webkit-transform: translateX(130%);
	transform: translateX(130%);
}

@media (prefers-reduced-motion: reduce) {

	.dt-social-card.animate-slide .dt-social__circle i,
	.dt-social-card.animate-slide .dt-social__circle .icon {
		transition: none;
	}
}

.dt-social-card.animate-slide:hover .dt-social__circle,
.dt-social-card.animate-slide:focus .dt-social__circle {
	left: -7.5rem;
}

.dt-social-card.animate-slide:hover .dt-social__circle i,
.dt-social-card.animate-slide:hover .dt-social__circle .icon,
.dt-social-card.animate-slide:focus .dt-social__circle i,
.dt-social-card.animate-slide:focus .dt-social__circle .icon {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	color: #fff !important;
}

.dt-card-performance .dt-card__header {
	margin-bottom: 0;
	padding-bottom: 4.8rem;
}

.dt-card-performance .dt-card__body {
	position: relative;
	padding-top: 4.8rem;
}

.dt-card-performance .user-avatar {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.dt-chart {
	position: relative;
}

.dt-chart__header {
	padding: 2.8rem 3.2rem;
}

.dt-chart__header:not(:last-child) {
	padding-bottom: 0;
}

.dt-chart__body {
	position: relative;
}

.dt-chart__overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding: 15px 20px;
	overflow: hidden;
}

.dt-chart__overlay .close-btn,
.dt-chart__overlay .action-btn {
	position: absolute;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {

	.dt-chart__overlay .close-btn,
	.dt-chart__overlay .action-btn {
		transition: none;
	}
}

.dt-chart__overlay .action-btn {
	bottom: 15px;
	right: 20px;
}

.dt-chart__overlay .close-btn {
	top: 10px;
	right: 20px;
}

.dt-chart__overlay:hover .action-btn {
	visibility: visible;
	opacity: 1;
}

.dt-chart.dt-chart__reveal .content-area,
.dt-chart.dt-chart__reveal .action-btn {
	opacity: 0;
	visibility: hidden;
}

.dt-chart.dt-chart__reveal .close-btn {
	opacity: 1;
	visibility: visible;
}

.dt-chart.dt-chart__reveal .dt-chart__overlay {
	background-color: rgba(0, 0, 0, 0.1);
}

.dt-chart__header .style-default {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.dt-chart__header .style-default .number {
	display: block;
	margin-bottom: 0;
	margin-right: 8px;
	color: #212121;
}

.dt-chart__header .style-default p {
	font-size: 12px;
	-ms-flex: 1 0 100%;
	flex: 1 0 100%;
}

.dt-chart__header .style-default p:last-child {
	margin-bottom: 0;
}

.dt-chart__header .style-default .trending-section {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.dt-chart__header .style-default .trending-section .value {
	display: block;
	margin-bottom: 0;
	margin-right: 3px;
	color: inherit;
	font-size: 2rem;
}

.dt-chart__header .style-default.style-crypto .number {
	font-size: 2.4rem;
	font-weight: 500;
}

.dt-chart__header .style-default.style-crypto .value {
	font-size: 1.4rem;
	font-weight: 500;
}

.dt-chart__header.vertical-view .style-default {
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
}

.dt-chart__header.vertical-view .style-default .number {
	font-size: 3rem;
}

.dt-chart__header.vertical-view .style-default .value {
	font-size: 3rem;
	font-weight: 500;
}

.dt-chart__header.vertical-view .style-default p {
	font-size: 1.4rem;
}

.trending-section {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.trending-section .value {
	display: block;
	margin-bottom: 0;
	color: inherit;
}

.trending-section .value:not(:last-child) {
	margin-right: 3px;
}

.dt-slider {
	position: relative;
}

.dt-slider__header {
	padding: 10px 20px 2px;
	position: absolute;
	top: 0;
	z-index: 2;
	width: 100%;
}

.dt-slider__header .dt-checkbox-icon {
	float: right;
}

.dt-slider__header .dt-checkbox-icon .dt-checkbox-content {
	background: rgba(0, 0, 0, 0.4);
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.card .dt-slider {
	position: relative;
}

.card .dt-slider .owl-dots {
	position: absolute;
	bottom: 0;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.dt-card-carousel .owl-dots {
	padding-left: 3.2rem;
	padding-right: 3.2rem;
	position: absolute;
	bottom: 1.4rem;
	width: 100%;
}

.dt-card-carousel .card-body {
	padding-bottom: 4.8rem;
}

.dt-card-carousel img.dt-fab-btn {
	width: inherit;
}

.dt-card-carousel.carousel-dot-top .card-body {
	padding-bottom: 3.2rem;
	padding-top: 4.8rem;
}

.dt-card-carousel.carousel-dot-top .owl-dots {
	bottom: auto;
	top: 1.4rem;
	margin-top: 0 !important;
}

.dt-card-carousel .carousel-thumb {
	height: 100%;
}

.dt-card-carousel .carousel-thumb img {
	min-height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.dt-card-carousel .carousel-thumb.object-none img {
	-o-object-fit: none;
	object-fit: none;
}

.ct-grid {
	stroke: #f1f1f1;
}

.ct-label {
	font-family: "NoirPro", sans-serif;
	font-weight: 500;
	font-size: 1rem;
}

.theme-dark .ct-label {
	color: #757575;
}

.stroke-w-1 .ct-line {
	stroke-width: 1px;
}

.stroke-w-2 .ct-line {
	stroke-width: 2px;
}

.stroke-w-3 .ct-line {
	stroke-width: 3px;
}

.stroke-dasharray-0 .ct-grid {
	stroke-dasharray: 0;
}

.stroke-dasharray-1 .ct-grid {
	stroke-dasharray: 1px;
}

.stroke-dasharray-2 .ct-grid {
	stroke-dasharray: 2px;
}

.stroke-dasharray-3 .ct-grid {
	stroke-dasharray: 3px;
}

.stroke-dasharray-4 .ct-grid {
	stroke-dasharray: 4px;
}

.stroke-dasharray-5 .ct-grid {
	stroke-dasharray: 5px;
}

.fill-opacity-0 .ct-area {
	fill-opacity: 0;
}

.fill-opacity-0_1 .ct-area {
	fill-opacity: 0.1;
}

.fill-opacity-0_2 .ct-area {
	fill-opacity: 0.2;
}

.fill-opacity-0_3 .ct-area {
	fill-opacity: 0.3;
}

.fill-opacity-0_4 .ct-area {
	fill-opacity: 0.4;
}

.fill-opacity-0_5 .ct-area {
	fill-opacity: 0.5;
}

.fill-opacity-0_6 .ct-area {
	fill-opacity: 0.6;
}

.fill-opacity-0_7 .ct-area {
	fill-opacity: 0.7;
}

.fill-opacity-0_8 .ct-area {
	fill-opacity: 0.8;
}

.fill-opacity-0_9 .ct-area {
	fill-opacity: 0.9;
}

.fill-opacity-1 .ct-area {
	fill-opacity: 1;
}

.drop-shadow {
	-webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
	filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.stroke-primary .ct-series-a .ct-line {
	stroke: var(--primary);
}

.stroke-secondary .ct-series-a .ct-line {
	stroke: #ff4081;
}

.stroke-success .ct-series-a .ct-line {
	stroke: #52c41a;
}

.stroke-danger .ct-series-a .ct-line {
	stroke: #d32c1f;
}

.stroke-warning .ct-series-a .ct-line {
	stroke: #fa8c16;
}

.stroke-info .ct-series-a .ct-line {
	stroke: #1890ff;
}

.ct-line-chart .ct-series-a .ct-line {
	stroke: var(--primary);
}

.ct-line-chart .ct-series-a .ct-area {
	fill: url(#gradient2) !important;
}

.ct-line-chart .ct-series-b .ct-line {
	stroke: #ff4081;
}

.ct-line-chart .ct-series-b .ct-area {
	fill: url(#gradient3) !important;
}

.chart-area-work .ct-series-a .ct-line {
	stroke: var(--primary);
}

.chart-area-work .ct-series-a .ct-area {
	fill: url(#ws-gradient3) !important;
}

.chart-area-balance .ct-series-a .ct-line {
	stroke: #ff4081;
}

.chart-area-balance .ct-series-a .ct-area {
	fill: url(#gradient3) !important;
}

.chart-area-balance .ct-label {
	padding-top: 5px;
	border-top: 1px solid #ddd;
	font-weight: 400;
	font-size: 1.4rem;
}

.chart-area-balance .ct-label.ct-horizontal.ct-end {
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

.user-bg-card {
	position: relative;
	display: block;
	min-width: 132px;
	width: 100%;
	padding: 0;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.user-bg-card:before {
	content: "";
	display: block;
	padding-top: 68%;
}

.user-bg-card-sm {
	min-width: 88px;
}

.user-bg-card .dt-status {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
	border: 1px solid #fff;
}

.user-bg-card .user-bg-card__info {
	content: "";
	display: block;
	background-image: linear-gradient(to bottom,
			transparent 0%,
			rgba(0, 0, 0, 0.8) 100%);
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	z-index: 1;
	width: 100%;
	padding: 10px;
	color: #fff;
}

.user-bg-card .user-bg-card__info .dt-avatar-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.campaigns-widget .dt-widget {
	margin-left: -1.6rem;
	margin-right: -1.6rem;
}

.campaigns-widget .dt-widget__item {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding: 10px 1.6rem;
	border-radius: 0.4rem;
}

@media screen and (max-width: 450px) {
	.campaigns-widget {
		font-size: 12px;
	}

	.campaigns-widget .dt-widget__title {
		font-size: 12px;
	}
}

.real-time-widget {
	position: relative;
	background-image: linear-gradient(to bottom,
			rgba(81, 45, 168, 0.65) 0%,
			var(--primary) 100%);
	background-repeat: repeat-x;
}

.real-time-widget .chart-fluid {
	position: relative;
	margin-bottom: -3.2rem;
	margin-left: -3.2rem;
	margin-right: -3.2rem;
}

.dt-indicator-item:not(:last-child) {
	margin-bottom: 10px;
}

.dt-indicator-item__bar {
	height: 4px;
	border-radius: 0.2rem;
	width: 100%;
	background-color: #e9ecef;
}

.dt-indicator-item__fill {
	min-height: 4px;
	height: 100%;
	border-radius: 0.2rem;
	width: 0;
}

.dt-indicator-item__fill.fill-pointer {
	position: relative;
}

.dt-indicator-item__fill.fill-pointer:after {
	content: "";
	position: absolute;
	right: 0;
	left: auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: inherit;
}

.dt-indicator-item__info {
	display: -ms-flexbox;
	display: flex;
}

.dt-indicator-item__info:not(.flex-column) {
	-ms-flex-align: center;
	align-items: center;
}

.dt-indicator-item__count {
	font-size: 1.2rem;
}

.dt-indicator-half {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.dt-indicator-half-item {
	width: 50%;
	padding: 0 12px;
}

.dt-indicator-title {
	margin-bottom: 2px;
	color: #212121;
}

.dt-indicator-title:not([class*="f-"]) {
	font-size: 1.4rem;
}

@media (max-width: 575.98px) {
	.dt-indicator-title:not([class*="f-"]) {
		font-size: 1.6rem;
	}
}

.dt-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -7px;
	margin-right: -7px;
}

.dt-list-xs {
	margin-left: -0.5px;
	margin-right: -0.5px;
}

.dt-list-xs>.dt-list__item {
	padding-left: 0.5px;
	padding-right: 0.5px;
	margin-bottom: 1px;
}

.dt-list-sm {
	margin-left: -3px;
	margin-right: -3px;
}

.dt-list-sm>.dt-list__item {
	padding-left: 3px;
	padding-right: 3px;
	margin-bottom: 6px;
}

.dt-list-xl {
	margin-left: -12px;
	margin-right: -12px;
}

.dt-list-xl>.dt-list__item {
	padding-left: 12px;
	padding-right: 12px;
}

.dt-list-xxl {
	margin-left: -20px;
	margin-right: -20px;
}

.dt-list-xxl>.dt-list__item {
	padding-left: 20px;
	padding-right: 20px;
}

.dt-list__item {
	padding-left: 7px;
	padding-right: 7px;
	margin-bottom: 14px;
}

.dt-list-bordered .dt-list__item:not(:last-child) {
	border-right: 1px solid #ddd;
}

.dt-list-col-6 .dt-list__item {
	width: 50%;
}

.dt-list-col-6 .dt-list__item:nth-last-of-type(1),
.dt-list-col-6 .dt-list__item:nth-last-of-type(2) {
	margin-bottom: 0;
}

.dt-list-col-4 .dt-list__item {
	width: 33.333%;
}

.dt-list-col-4 .dt-list__item:nth-last-of-type(1),
.dt-list-col-4 .dt-list__item:nth-last-of-type(2),
.dt-list-col-4 .dt-list__item:nth-last-of-type(3) {
	margin-bottom: 0;
}

.dt-list-cm-0 .dt-list__item {
	margin-bottom: 0;
}

.dt-list-square {
	list-style-type: square;
}

.dt-list.flex-column .dt-list__item:last-child {
	margin-bottom: 0;
}

.dt-list-stack {
	position: relative;
	margin-left: 0;
	margin-right: 0;
}

.dt-list-stack>.dt-list__item {
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 0;
}

.dt-list-stack>li:nth-child(1) {
	z-index: 1;
}

.dt-list-stack>li:nth-child(2) {
	z-index: 2;
}

.dt-list-stack>li:nth-child(3) {
	z-index: 3;
}

.dt-list-stack>li:nth-child(4) {
	z-index: 4;
}

.dt-list-stack>li:nth-child(5) {
	z-index: 5;
}

.dt-list-stack>li:nth-child(6) {
	z-index: 6;
}

.dt-list-stack>li:nth-child(7) {
	z-index: 7;
}

.dt-list-stack>li:nth-child(8) {
	z-index: 8;
}

.dt-list-stack>li:nth-child(9) {
	z-index: 9;
}

.dt-list-stack>li:nth-child(10) {
	z-index: 10;
}

.dt-list-stack>li:nth-child(11) {
	z-index: 11;
}

.dt-list-stack>li:nth-child(12) {
	z-index: 12;
}

.dt-list-stack>li:nth-child(13) {
	z-index: 13;
}

.dt-list-stack>li:nth-child(14) {
	z-index: 14;
}

.dt-list-stack>li:nth-child(15) {
	z-index: 15;
}

.dt-list-stack>li:nth-child(16) {
	z-index: 16;
}

.dt-list-stack>li:nth-child(17) {
	z-index: 17;
}

.dt-list-stack>li:nth-child(18) {
	z-index: 18;
}

.dt-list-stack>li:nth-child(19) {
	z-index: 19;
}

.dt-list-stack>li:nth-child(20) {
	z-index: 20;
}

.dt-team-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}

.dt-team-list li {
	padding-left: 5px;
	padding-right: 5px;
}

.dt-team-list-sm {
	margin-left: -3px;
	margin-right: -3px;
}

.dt-team-list-sm li {
	padding-left: 3px;
	padding-right: 3px;
}

.dt-friend-list>.dt-list__item,
.dt-friend-list>li {
	width: 33.333%;
}

.dt-friend-list .user-bg-card {
	margin-bottom: 0;
	min-width: auto;
	width: 100%;
}

.invoice-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -1rem;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.invoice-list__item {
	padding: 0 1rem;
	text-align: center;
}

.invoice-list__number {
	font-size: 2.2rem;
	margin-bottom: 4px;
	color: #212121;
	display: block;
}

.invoice-list__label {
	display: inline-block;
	line-height: 1;
	font-size: 1.4rem;
	color: #999;
}

@media (max-width: 575.98px) {
	.invoice-list__label {
		font-size: 1.6rem;
	}
}

.invoice-list__item {
	position: relative;
	cursor: pointer;
}

.invoice-list__item .dot-shape {
	margin-right: 4px;
	transition: all 120ms ease;
}

@media (prefers-reduced-motion: reduce) {
	.invoice-list__item .dot-shape {
		transition: none;
	}
}

.invoice-list__item:hover .dot-shape,
.invoice-list__item:focus .dot-shape {
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}

.invoice-list__item .custom-tooltip {
	transition: all 0.5s ease;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.invoice-list__item .custom-tooltip {
		transition: none;
	}
}

.invoice-list__item:hover .custom-tooltip,
.invoice-list__item:focus .custom-tooltip {
	position: absolute;
	top: -120%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	visibility: visible;
	opacity: 1;
}

.media-list .media:not(:last-child) {
	margin-bottom: 3rem;
}

.media-list .media.media-news>img {
	width: 250px;
}

@media (max-width: 767.98px) {
	.media-list .media.media-news>img {
		width: 200px;
	}
}

@media (max-width: 575.98px) {
	.media-list .media.media-news>img {
		width: 100%;
		margin-bottom: 2.4rem;
	}
}

@media (max-width: 575.98px) {
	.media-list .media.media-news {
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.media-separator .media:not(:last-child) {
	border-bottom: 1px solid #ddd;
	padding-bottom: 3.2rem;
	margin-bottom: 3.2rem;
}

.dt-widget-sm .dt-widget__item {
	padding-top: 8px;
	padding-bottom: 8px;
}

.dt-widget-xl .dt-widget__item {
	padding-top: 20px;
	padding-bottom: 20px;
}

.dt-widget+.dt-widget {
	margin-top: 18px;
}

.dt-widget+.dt-widget-link,
.dt-widget__item+.dt-widget-link {
	margin-top: 10px;
	font-size: 12px;
	padding-left: 3.2rem;
	padding-right: 3.2rem;
}

.dt-widget .dt-widget__heading {
	display: block;
	padding-left: 3.2rem;
	padding-right: 3.2rem;
	margin-bottom: 4px;
	color: #999;
}

.dt-widget__item {
	display: -ms-flexbox;
	display: flex;
	flex: 1;
	-ms-flex: 1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	padding: 1.4rem 3.2rem 1.5rem;
}

.dt-widget__item .dt-widget__info {
	flex: 1;
	-ms-flex: 1;
	-ms-flex-item-align: center;
	align-self: center;
}

.dt-widget__item .dt-widget__info:not(:last-child) {
	padding-right: 1.6rem;
}

.dt-widget__item .dt-widget__img+.dt-widget__info {
	padding-left: 1.6rem;
}

@media (max-width: 575.98px) {
	.dt-widget__item .dt-widget__img+.dt-widget__info {
		padding-left: 1.4rem;
	}
}

.dt-widget__title {
	display: block;
	color: #212121;
	margin-bottom: 4px;
}

.dt-widget__title>a {
	color: inherit;
}

.dt-widget__title:not([class*="f-"]) {
	font-size: 1.4rem;
}

@media (max-width: 575.98px) {
	.dt-widget__title:not([class*="f-"]) {
		font-size: 1.7rem;
	}
}

.dt-widget__title:last-child {
	margin-bottom: 0;
}

.dt-widget__subtitle {
	font-size: 1.3rem;
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	.dt-widget__subtitle {
		font-size: 1.5rem;
	}
}

.dt-widget-hl-item .dt-widget__item {
	position: relative;
}

.dt-widget-hl-item .dt-widget__item:before {
	content: "";
	width: 0.7rem;
	height: 100%;
	background-color: transparent;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	border-radius: 0.6rem;
}

.dt-widget-hl-item .dt-widget__item.border-primary:before {
	background-color: var(--primary);
}

.dt-widget-hl-item .dt-widget__item.border-secondary:before {
	background-color: #ff4081;
}

.dt-widget-hl-item .dt-widget__item.border-danger:before {
	background-color: #d32c1f;
}

.dt-widget-hl-item .dt-widget__item.border-success:before {
	background-color: #52c41a;
}

.dt-widget-hl-item .dt-widget__item.border-info:before {
	background-color: #1890ff;
}

.dt-widget-hl-item .dt-widget__item.border-warning:before {
	background-color: #fa8c16;
}

.dt-widget-hl-item .dt-widget__item.border-dark:before {
	background-color: #212121;
}

.dt-widget-hl-item .dt-widget__item.border-light:before {
	background-color: #e5e5e5;
}

.dt-widget-hl-item-space .dt-widget__item {
	padding-left: 5.6rem;
}

.dt-widget-hl-item-space .dt-widget__item:before {
	left: 3.2rem;
}

.dt-widget-mb-item .dt-widget__item:not(:last-child) {
	margin-bottom: 2rem;
}

.dt-task {
	overflow: hidden;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-align: center;
	align-items: center;
}

.dt-task .dt-task__number {
	display: none;
}

@media (min-width: 576px) {
	.dt-task {
		min-width: 135px;
	}

	.dt-task .dt-task__number {
		display: block;
		font-size: 1.2rem;
		transition: all 0.4s ease;
		margin-right: -1.4rem;
	}
}

@media (min-width: 576px) and (prefers-reduced-motion: reduce) {
	.dt-task .dt-task__number {
		transition: none;
	}
}

@media (min-width: 576px) {
	.dt-task .dt-task__redirect {
		transition: all 0.4s ease;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@media (min-width: 576px) and (prefers-reduced-motion: reduce) {
	.dt-task .dt-task__redirect {
		transition: none;
	}
}

@media (min-width: 576px) {
	.dt-widget-hover .dt-widget__item:hover .dt-task .dt-task__number {
		color: var(--primary);
		margin-right: 6rem;
	}

	.dt-widget-hover .dt-widget__item:hover .dt-task .dt-task__redirect {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

.dt-widget-hover-bg .dt-widget__item:hover {
	background-color: rgba(81, 45, 168, 0.06);
}

@media (min-width: 576px) {
	.dt-widget-hover-bg .dt-widget__item:hover .dt-task .dt-task__number {
		color: var(--primary);
		margin-right: 6rem;
	}

	.dt-widget-hover-bg .dt-widget__item:hover .dt-task .dt-task__redirect {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.theme-dark .dt-widget-hover-bg .dt-widget__item:hover {
	background-color: rgba(81, 45, 168, 0.2);
}

.dt-widget-separator .dt-widget__item:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.dropleft .dropdown-toggle:before,
.dropright .dropdown-toggle:after,
.dropup .dropdown-toggle:after,
.dropdown-toggle:after {
	border: 0 none;
	font-size: 1.8rem;
	font-family: "fontello";
	line-height: 0.7;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.dropleft .dropdown-toggle:before {
	content: "\31";
}

.dropright .dropdown-toggle:after {
	content: "\32";
}

.dropup .dropdown-toggle:after {
	content: "\33";
}

.dropdown-toggle:after {
	content: "\f107";
}

.dropdown-toggle.dropdown-toggle-split:after {
	margin-left: 0;
}

.dropdown-toggle.no-arrow:after {
	content: none;
}

.static-dropdown-menu {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.static-dropdown-menu>.dropdown-menu {
	position: static;
	display: inline-block;
	float: none;
}

@media (max-width: 575.98px) {
	.static-dropdown-menu {
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.dropdown-item.disabled,
.dropdown-item:disabled {
	pointer-events: none;
}

@media (max-width: 575.98px) {
	.dropdown-menu {
		font-size: 1.6rem;
	}
}

.dropdown-menu-media {
	padding: 0;
}

.dropdown-menu-header,
.dropdown-menu-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	font-size: 13px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 1.5rem 1.8rem;
}

.dropdown-menu-header {
	box-shadow: 0 2px 2px 0 rgba(117, 117, 117, 0.05);
}

.dropdown-menu-header .title {
	font-size: 15px;
	margin-bottom: 0;
}

.dropdown-menu-body {
	padding: 1.5rem 1.8rem;
}

.dropdown-menu-footer {
	box-shadow: 0 -2px 2px 0 rgba(117, 117, 117, 0.05);
}

.dropzone {
	border-style: dashed;
	border-radius: 0.6rem;
	min-height: 350px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
}

.dropzone .dz-message {
	font-size: 2.2rem;
}

@media (max-width: 1199.98px) {
	.dropzone .dz-message {
		font-size: 1.6rem;
	}
}

@media (max-width: 1199.98px) {
	.dropzone {
		min-height: 300px;
	}
}

@media (max-width: 767.98px) {
	.dropzone {
		min-height: 200px;
	}
}

@media (max-width: 575.98px) {
	.dropzone {
		min-height: 140px;
	}
}

.form-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}

.form-row>.col,
.form-row>[class*="col-"] {
	padding-right: 10px;
	padding-left: 10px;
}

.form-control {
	font-weight: 300;
}

.custom-select {
	-webkit-appearance: none;
	-moz-appearance: none;
}

.search-box {
	position: relative;
	max-width: 400px;
	width: 100%;
}

.search-box input[type="search"] {
	padding-left: 40px;
}

.search-box .search-icon {
	color: #757575;
	line-height: 1;
	position: absolute;
	left: 15px;
	top: 50%;
	z-index: 4;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.search-box button.search-icon {
	background-color: transparent;
	border: 0 none;
	padding: 0;
}

.search-box button.search-icon:focus,
.search-box button.search-icon:active {
	outline: 0;
}

.dt-header .search-box .form-control {
	box-shadow: none;
	border-color: #f2f2f2;
}

.dt-header .search-box .form-control::-moz-placeholder,
.dt-header .search-box .form-control::-moz-placeholder {
	color: #757575;
}

.dt-header .search-box .form-control::placeholder,
.dt-header .search-box .form-control::-moz-placeholder {
	color: #757575;
}

@media (max-width: 1199.98px) {
	.dt-header .search-box {
		max-width: 30em;
	}

	.dt-header .search-box .btn {
		padding-left: 5px;
		padding-right: 5px;
	}
}

@media (max-width: 575.98px) {
	.dt-header .search-box {
		max-width: 200px;
	}
}

.search-box.right-side-icon input[type="search"] {
	padding-left: 1.7rem;
	padding-right: 40px;
}

.search-box.right-side-icon .search-icon {
	left: auto;
	right: 15px;
}

.switch-double .switch {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

.switch-double .switch .slider {
	margin-left: 10px;
	margin-right: 10px;
}

.switch {
	position: relative;
	cursor: pointer;
	margin-bottom: 0;
}

.switch input {
	display: none;
}

.switch input:checked+.slider {
	background-color: var(--primary);
}

.switch input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	transform: translateX(26px);
}

.switch input:focus+.slider {
	box-shadow: 0 0 1px var(--primary);
}

.slider {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
	cursor: pointer;
	background-color: #ced4da;
	border-radius: 50px;
	transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.slider {
		transition: none;
	}
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2px;
	bottom: 2px;
	background-color: #fff;
	border-radius: 50%;
	transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.slider:before {
		transition: none;
	}
}

.switch-sm .slider {
	width: 35px;
	height: 18px;
}

.switch-sm .slider:before {
	width: 14px;
	height: 14px;
}

.switch-sm input:checked+.slider:before {
	-webkit-transform: translateX(17px);
	transform: translateX(17px);
}

.dt-checkbox {
	position: relative;
	padding-left: 2.5rem;
	display: inline-block;
}

.dt-checkbox input[type="checkbox"] {
	position: absolute;
	z-index: 1;
	cursor: pointer;
	margin-left: -2rem;
	opacity: 0;
}

.dt-checkbox-content {
	position: relative;
	display: inline-block;
	padding-left: 8px;
	margin-bottom: 0;
	line-height: 1.3;
}

.dt-checkbox-content:before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 2rem;
	height: 2rem;
	left: 0;
	top: 0;
	margin-left: -2rem;
	border: 1px solid #999;
	border-radius: 0.4rem;
	transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.dt-checkbox-content:before {
		transition: none;
	}
}

.dt-checkbox-content:after {
	position: absolute;
	display: inline-block;
	font-size: 1.2rem;
	left: 0.35rem;
	top: 0.25rem;
	margin-left: -2rem;
}

.dt-checkbox-circle .dt-checkbox-content:before {
	border-radius: 50%;
}

.dt-checkbox-todo {
	display: block;
}

.dt-checkbox-todo .dt-checkbox-content:before {
	border-radius: 50%;
}

.dt-checkbox-todo .dt-checkbox-content:after {
	content: "\5a";
	font-family: "fontello";
	left: 0.4rem;
	top: 0.4rem;
	font-size: 1rem;
}

@media (max-width: 575.98px) {
	.dt-checkbox-todo .dt-checkbox-content:after {
		top: 0.3rem;
		font-size: 1.2rem;
	}
}

.dt-checkbox-todo input[type="checkbox"]:checked~.dt-checkbox-content {
	text-decoration: line-through;
	color: #999;
}

.dt-checkbox-todo input[type="checkbox"]:checked~.dt-checkbox-content:before {
	border-color: #52c41a;
}

.dt-checkbox-todo input[type="checkbox"]:checked~.dt-checkbox-content:after {
	color: #52c41a;
}

.dt-checkbox input[type="checkbox"]:focus~.dt-checkbox-content:before {
	outline: 0 none;
}

.dt-checkbox input[type="checkbox"]:checked~.dt-checkbox-content:after {
	content: "\e806";
	font-family: "fontello";
}

.dt-checkbox-icon .dt-checkbox-content {
	position: absolute;
	top: 0;
	left: 0;
	margin-left: -8px;
}

.dt-checkbox-icon .dt-checkbox-content:before,
.dt-checkbox-icon .dt-checkbox-content:after {
	content: none;
}

.dt-checkbox-icon .dt-checkbox-content .checked,
.dt-checkbox-icon .dt-checkbox-content .unchecked {
	font-size: 1.8rem;
	display: inline-block;
}

.dt-checkbox-icon .dt-checkbox-content .checked {
	display: none;
}

.dt-checkbox-icon input[type="checkbox"]:checked~.dt-checkbox-content:before,
.dt-checkbox-icon input[type="checkbox"]:checked~.dt-checkbox-content:after {
	content: none;
}

.dt-checkbox-icon input[type="checkbox"]:checked~.dt-checkbox-content .unchecked {
	display: none;
}

.dt-checkbox-icon input[type="checkbox"]:checked~.dt-checkbox-content .checked {
	display: inline-block;
}

.dt-checkbox-only {
	padding-left: 0;
}

.dt-checkbox-only input[type="checkbox"] {
	margin-left: 0;
	position: absolute;
	height: 100%;
	width: 100%;
}

.dt-checkbox-only .dt-checkbox-content {
	position: relative;
	padding-left: 0;
	margin-left: 0;
	cursor: pointer;
}

.dt-attachment-btn {
	position: relative;
	border: 1px solid #ddd;
	background-color: #fff;
}

.dt-attachment-btn input[type="file"] {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	cursor: pointer;
}

.flag-icon-lg {
	font-size: 1.8rem;
}

.flag-icon-xl {
	font-size: 2.5rem;
}

.flag-icon-rounded {
	border-radius: 0.2rem;
}

.flag-icon-circle {
	border-radius: 50%;
}

.icon {
	line-height: 0.7;
	display: inline-block;
	vertical-align: middle;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-fw {
	width: 1.28571429em;
	text-align: center;
}

.icon-sm {
	font-size: 1.4rem;
}

.icon-lg {
	font-size: 1.6rem;
}

.icon-xl {
	font-size: 2rem;
}

.icon-1x {
	font-size: 2.2rem;
}

.icon-2x {
	font-size: 2.5rem;
}

.icon-3x {
	font-size: 3rem;
}

.icon-4x {
	font-size: 4rem;
}

.icon-5x {
	font-size: 4.5rem;
}

.icon-6x {
	font-size: 5.5rem;
}

.icon-7x {
	font-size: 7rem;
}

.icon-rotate--25 {
	-webkit-transform: rotate(-25deg);
	transform: rotate(-25deg);
}

.dt-icon-bg {
	position: relative;
	font-size: 4.2rem;
}

.dt-icon-bg:before {
	position: relative;
	z-index: 2;
	background-color: #fff;
	display: block;
}

.dt-icon-bg:after {
	content: "";
	display: inline-block;
	width: 4.2rem;
	height: 4.2rem;
	border-radius: 50%;
	background: inherit;
	opacity: 0.2;
	position: absolute;
	top: 0.4rem;
	left: 0.1rem;
	z-index: 2;
}

.rquest-alert::after {
	top: 1px !important;
}

.dt-icon-alert {
	position: relative;
}

.dt-icon-alert:after {
	position: absolute;
	content: "";
	left: 28px;
	top: 16px;
	z-index: 10;
	width: 6px;
	height: 6px;
	background-color: #d32c1f;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 rgba(244, 67, 54, 0.4);
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 6px rgba(244, 67, 54, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
	}

	70% {
		box-shadow: 0 0 0 6px rgba(244, 67, 54, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
	}
}

.draggable-icon {
	cursor: all-scroll;
}

.draggable-icon:hover,
.draggable-icon:focus,
.draggable-icon:active {
	cursor: all-scroll;
}

.icon-spin {
	-webkit-animation: icon-spin 1.5s infinite linear;
	animation: icon-spin 1.5s infinite linear;
}

.icon-spin-reverse {
	-webkit-animation: icon-spin-reverse 1.5s infinite linear;
	animation: icon-spin-reverse 1.5s infinite linear;
}

.animation-customizer {
	-webkit-animation: animation-customizer 1s infinite ease-in-out;
	animation: animation-customizer 1s infinite ease-in-out;
}

@-webkit-keyframes icon-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes icon-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-webkit-keyframes icon-spin-reverse {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-359deg);
		transform: rotate(-359deg);
	}
}

@keyframes icon-spin-reverse {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-359deg);
		transform: rotate(-359deg);
	}
}

@-webkit-keyframes animation-customizer {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes animation-customizer {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.tabs-container .tab-content {
	border: solid 1px #dee2e6;
	border-top: 0 none;
}

.tabs-container.tabs-vertical .tab-content {
	border-top: solid 1px #dee2e6;
}

.tabs-container .card .tab-content {
	border: 0 none;
}

.tabs-container .nav-tabs {
	border-color: #dee2e6;
}

.tabs-container .nav-tabs .nav-link:not(.active):hover,
.tabs-container .nav-tabs .nav-link:not(.active):focus {
	border-color: #dee2e6;
}

.tabs-container:not(.tabs-vertical) .nav-tabs .nav-link.active {
	border-color: #dee2e6 #dee2e6 #fff;
}

.tabs-vertical .nav-pills,
.tabs-vertical .nav-tabs {
	border: 0 none;
	float: left;
}

.tabs-vertical .nav-pills>li,
.tabs-vertical .nav-tabs>li {
	float: none;
}

.tabs-vertical .tab-content {
	overflow: hidden;
}

.tabs-vertical .nav-tabs>li .nav-link {
	border-color: #dee2e6;
	border-radius: 0;
	margin-right: -1px;
	z-index: 5;
}

.tabs-vertical .nav-tabs>li .nav-link.active {
	border-right-color: #fff;
}

.tabs-vertical .nav-tabs>li:first-child a {
	border-radius: 0.4rem 0 0 0;
}

.tabs-vertical .nav-tabs>li:last-child a {
	border-radius: 0 0 0 0.4rem;
}

.tabs-right .nav-tabs {
	float: right;
}

.tabs-right .nav-tabs>li .nav-link {
	margin-right: 0;
	margin-left: -1px;
}

.tabs-right .nav-tabs>li .nav-link.active {
	border-left-color: #fff;
	border-right-color: #dee2e6;
}

.tabs-right .nav-tabs>li:first-child a {
	border-radius: 0 0.4rem 0 0;
}

.tabs-right .nav-tabs>li:last-child a {
	border-radius: 0 0 0.4rem 0;
}

.nav-underline .nav-link {
	position: relative;
	color: #757575;
}

.nav-underline .nav-link.active:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 3px;
	width: 100%;
	background-color: var(--primary);
}

.nav-underline .nav-link.active {
	color: var(--primary);
}

.nav-underline .nav-link:hover,
.nav-underline .nav-link:focus,
.nav-underline .nav-link:active {
	color: var(--primary);
}

.nav-underline-none .nav-link.active:before {
	content: none;
}

.nav-pills-sm .active {
	font-size: 12px;
}

.nav-pills-sm .nav-link {
	padding: 4px 8px;
}

.nav-tabs .nav-link {
	color: #757575;
}

.nav-tabs-sm .nav-link {
	padding: 6px 10px;
}

.nav-sm .nav-link {
	padding: 4px 10px;
}

.nav-scroll {
	display: -ms-flexbox;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.nav-scroll.nav-underline {
	margin-bottom: -3.4rem;
}

@media (max-width: 575.98px) {
	.nav-scroll.nav-underline {
		margin-bottom: -3.45rem;
	}
}

.nav-scroll.nav-underline .nav-link {
	border-bottom: 3px solid transparent;
}

.nav-scroll.nav-underline .nav-link.active {
	border-color: var(--primary);
}

.nav-scroll.nav-underline .nav-link.active:before {
	content: none;
}

.timepicker-sbs .datepicker-days,
.timepicker-sbs .datepicker-months,
.timepicker-sbs .datepicker-years,
.timepicker-sbs .datepicker-decades,
.timepicker-sbs .timepicker-picker,
.timepicker-sbs .timepicker-hours,
.timepicker-sbs .timepicker-minutes {
	padding: 12px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 0.4rem;
}

.bootstrap-datetimepicker-widget .table-sm thead th {
	padding-top: 0.3rem;
	border-bottom: 0 none;
}

.bootstrap-datetimepicker-widget .table-sm thead th:first-child,
.bootstrap-datetimepicker-widget .table-sm tbody th:first-child {
	padding-left: 0.3rem;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
	display: block;
	margin: 2px 0;
	padding: 10px;
	width: 25rem;
}

.bootstrap-datetimepicker-widget .picker-switch td span {
	line-height: inherit;
	height: auto;
	width: 100%;
}

.theme-dark .bootstrap-datetimepicker-widget {
	background-color: #fff;
}

.theme-dark .bootstrap-datetimepicker-widget table td,
.theme-dark .bootstrap-datetimepicker-widget table th {
	background-color: #fff;
}

.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
	border-radius: 0.4rem;
	border-top: 0 none;
}

.bootstrap-datetimepicker-widget table td.today:before {
	border-bottom-color: var(--primary);
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
	background: none;
	color: #dee2e6;
	cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
	color: #adb5bd;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
	background-color: var(--primary);
}

.bootstrap-datetimepicker-widget table td span {
	border-radius: 0.4rem;
}

.bootstrap-datetimepicker-widget table td span.active {
	background-color: var(--primary);
}

.sp-replacer {
	padding: 0.8rem;
	border-color: #ddd;
	background: #f4f4f4;
	color: #757575;
	vertical-align: middle;
	border-radius: 0.4rem;
}

.sp-replacer:hover,
.sp-replacer.sp-active {
	background: #e9ecef;
	border-color: #d0d0d0;
	color: #212121;
}

.sp-preview {
	width: 35px;
	height: 25px;
	border-radius: 0.4rem;
	border: 0 none;
}

.sp-preview-inner {
	border-radius: 0.4rem;
}

.sp-dd {
	font-size: 0;
	padding-left: 2px;
	padding-right: 2px;
}

.sp-dd:after {
	content: "\30";
	font-size: 1.8rem;
	font-family: "fontello", sans-serif;
	line-height: 1;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.sp-picker-container {
	width: 18rem;
	border: 0 none;
}

.sp-container {
	background-color: #fff;
	border-color: #ddd;
	border-radius: 0.4rem;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	z-index: 999 !important;
}

.sp-button-container,
.sp-palette-button-container {
	margin-top: 0.5rem;
	text-align: right;
	float: none;
}

.sp-cancel,
.sp-choose,
.sp-palette-toggle {
	font-size: 1.2rem;
	display: inline-block;
	padding: 1.06rem 1.7rem;
	border-radius: 0.4rem;
	transition: all 200ms ease;
}

@media (prefers-reduced-motion: reduce) {

	.sp-cancel,
	.sp-choose,
	.sp-palette-toggle {
		transition: none;
	}
}

.sp-cancel {
	color: #fff !important;
	background-color: #d32c1f;
	margin-right: 4%;
}

.sp-cancel:hover,
.sp-cancel:focus {
	text-decoration: none;
	color: #fff !important;
	background-color: #f32c1e;
}

.sp-container button,
.sp-palette-toggle {
	background-color: var(--primary);
	background-image: none;
	border: 0 none;
	border-radius: 0.4rem;
	color: #fff;
	padding: 1.06rem 1.7rem;
	text-shadow: none;
	line-height: inherit;
}

.sp-container button:hover,
.sp-container button:active,
.sp-palette-toggle:hover,
.sp-palette-toggle:active {
	background-color: #472894;
	border: 0 none;
}

.sp-container button:hover,
.sp-palette-toggle:hover {
	background-image: none;
	text-shadow: none;
}

.sp-container button:active,
.sp-palette-toggle:active {
	box-shadow: none;
}

.sp-initial {
	float: none;
	border: 0 none;
}

.sp-initial span {
	width: 50%;
	float: left;
}

.sp-initial span .sp-thumb-inner {
	width: 100%;
	display: block;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.075) inset;
}

.sp-input-container {
	float: none;
	width: 100%;
}

.sp-input {
	border: 1px solid #ced4da;
}

.sp-input:focus {
	border-color: var(--primary);
}

.rating-container {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.ratings,
.rated {
	position: relative;
	font-family: "fontello";
	letter-spacing: 0.3rem;
	display: inline-block;
	overflow: hidden;
}

.ratings:before,
.rated:before {
	content: "\e0a3" "\e0a3" "\e0a3" "\e0a3" "\e0a3";
}

.ratings {
	color: #e9ecef;
}

.ratings:not(:last-child) {
	margin-right: 4px;
}

.rated {
	position: absolute;
	top: 0;
	left: 0;
	color: #ffc107;
}

.ratings-review {
	color: #757575;
	cursor: pointer;
}

.ratings-review:not([class*="f-"]) {
	font-size: 1.4rem;
}

@media (max-width: 575.98px) {
	.ratings-review:not([class*="f-"]) {
		font-size: 1.6rem;
	}
}

.ratings-review .count-number {
	color: #212121;
}

.scrollspy-horizontal,
.scrollspy-vertical,
.scrollspy-list-group {
	position: relative;
	overflow: auto;
}

.scrollspy-horizontal {
	height: 220px;
}

.scrollspy-vertical {
	height: 350px;
}

.scrollspy-list-group {
	height: 180px;
}

.table .btn-link {
	color: #969696;
}

.table .btn-link:hover,
.table .btn-link:focus {
	color: #757575;
}

.table thead th {
	border-top: 0 none;
	color: #212121;
	font-weight: 400;
	padding-top: 2.6rem;
}

.table .thead-light th {
	color: #212121;
}

.table .thead-dark th {
	background-color: #000;
	color: #fff;
}

.table.table-bordered thead th {
	border-top: 1px solid #ddd;
}

.table .table {
	background-color: #fff;
}

.table thead th:first-child,
.table tbody td:first-child,
.table tbody th:first-child {
	padding-left: 2.4rem;
}

.table-dark .btn-link {
	color: #c5c5c5;
}

.table-dark .btn-link:hover,
.table-dark .btn-link:focus {
	color: #fff;
}

.table-dark.card {
	background-color: #3c3c3c;
	border-color: #3c3c3c;
}

.table-dark.card .card-title {
	color: #fff;
}

.table-dark.card .card-subtitle {
	color: #c5c5c5;
}

.table-dark.table-bordered thead th {
	border-top-color: #414141;
}

.table-dark thead th {
	color: #fff;
}

.table-dark.table-hover tbody tr:hover {
	color: #fff;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
	background-color: transparent;
}

.table-dark.table-striped tbody tr:nth-of-type(even) {
	background-color: #292929;
}

.table-bordered thead th:first-child,
.table-bordered tbody th:first-child,
.table-bordered thead th {
	padding-top: 1.5rem;
	padding-left: 1.5rem;
}

.table-bordered-0 th,
.table-bordered-0 td {
	border: 0 none;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: transparent;
}

.table-striped tbody tr:nth-of-type(even) {
	background-color: #f8f8f8;
}

.table-ordered {
	color: #212121;
}

.table-ordered th,
.table-ordered td {
	padding: 8px 5px;
}

.table-ordered thead th {
	padding-top: 8px;
	font-size: 12px;
	color: #999;
}

.table-ordered thead th:first-child,
.table-ordered tbody th:first-child,
.table-ordered tbody td:first-child {
	padding-left: 0;
}

.table-fluid thead th:first-child,
.table-fluid tbody th:first-child,
.table-fluid tbody td:first-child {
	padding-left: 0;
}

.table-fluid thead th:last-child,
.table-fluid tbody td:last-child {
	text-align: right;
}

.table-fluid thead th:last-child .dt-list,
.table-fluid tbody td:last-child .dt-list {
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.dataTables_wrapper {
	position: relative;
}

.dataTables_wrapper .dataTables_length {
	float: left;
}

@media screen and (max-width: 767px) {
	.dataTables_wrapper .dataTables_length {
		float: none;
		margin-bottom: 15px;
		padding-top: 10px;
	}
}

.dataTables_wrapper .dataTables_filter {
	float: right;
	margin-left: 20px;
}

@media screen and (max-width: 767px) {
	.dataTables_wrapper .dataTables_filter {
		float: none;
		margin-left: 0;
	}
}

.dataTables_wrapper .dataTables_info {
	clear: both;
}

.dataTables_wrapper .dataTables_paginate ul.pagination {
	/*margin-top: 20px !important;*/
	/*justify-content: flex-end !important;*/
	margin-top: 20px;
	justify-content: flex-center;
}

@media screen and (max-width: 767px) {
	.table-responsive>.table {
		margin-bottom: 0;
	}

	.table-responsive>.table>thead>tr>th,
	.table-responsive>.table>tbody>tr>th,
	.table-responsive>.table>tfoot>tr>th,
	.table-responsive>.table>thead>tr>td,
	.table-responsive>.table>tbody>tr>td,
	.table-responsive>.table>tfoot>tr>td {
		white-space: nowrap;
	}

	.table-responsive>.table-bordered {
		border: 0;
	}

	.table-responsive>.table-bordered>thead>tr>th:first-child,
	.table-responsive>.table-bordered>tbody>tr>th:first-child,
	.table-responsive>.table-bordered>tfoot>tr>th:first-child,
	.table-responsive>.table-bordered>thead>tr>td:first-child,
	.table-responsive>.table-bordered>tbody>tr>td:first-child,
	.table-responsive>.table-bordered>tfoot>tr>td:first-child {
		border-left: 0;
	}

	.table-responsive>.table-bordered>thead>tr>th:last-child,
	.table-responsive>.table-bordered>tbody>tr>th:last-child,
	.table-responsive>.table-bordered>tfoot>tr>th:last-child,
	.table-responsive>.table-bordered>thead>tr>td:last-child,
	.table-responsive>.table-bordered>tbody>tr>td:last-child,
	.table-responsive>.table-bordered>tfoot>tr>td:last-child {
		border-right: 0;
	}

	.table-responsive>.table-bordered>tbody>tr:last-child>th,
	.table-responsive>.table-bordered>tfoot>tr:last-child>th,
	.table-responsive>.table-bordered>tbody>tr:last-child>td,
	.table-responsive>.table-bordered>tfoot>tr:last-child>td {
		border-bottom: 0;
	}
}

.custom-tooltip {
	position: relative;
	display: inline-block;
	padding: 0.8rem 2rem;
	background-color: var(--primary);
	font-size: 1.8rem;
	color: #fff;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	border-radius: 0.4rem;
	z-index: 1;
}

.custom-tooltip:after {
	display: block;
	height: 0;
	width: 0;
	color: var(--primary);
	content: "";
	border-left: 6px solid currentColor;
	border-right: 6px solid transparent;
	border-top: 6px solid currentColor;
	border-bottom: 6px solid transparent;
	position: absolute;
	bottom: -11px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 0 0 0 0.4rem;
}

.custom-tooltip.bg-warning:after {
	color: #fa8c16;
}

.custom-tooltip.bg-success:after {
	color: #52c41a;
}

.custom-tooltip.bg-danger:after {
	color: #d32c1f;
}

.custom-tooltip.bg-info:after {
	color: #1890ff;
}

.dt-zone-stats {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	border-left: 1px solid #ddd;
}

@media (max-width: 575.98px) {
	.dt-zone-stats {
		border-left: 0;
		border-top: 1px solid #ddd;
	}
}

.dt-zone-stats__content {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	flex: 1;
	-ms-flex: 1 1 auto;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 2rem;
}

.dt-zone-stats__content:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.dt-page--container {
	position: relative;
	height: 100%;
	flex: 1;
	-ms-flex: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #212121;
	font-size: 1.6rem;
}

.dt-page--container>* {
	position: relative;
	z-index: 2;
}

.dt-page--container .title {
	font-size: 7.2rem;
	font-weight: 600;
}

.dt-page--container .search-box {
	width: 320px;
	margin: 0 auto;
}

@media (max-width: 575.98px) {
	.dt-page--container .search-box {
		width: 250px;
	}
}

.dt-page--container .error-page {
	padding-left: 3.2rem;
	padding-right: 3.2rem;
}

.dt-login--container {
	height: 100%;
	flex: 1;
	-ms-flex: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.dt-login__content-wrapper {
	/* position: fixed; */
	height: 100%;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	background-color: #fff;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	overflow: hidden;
}

@media (max-width: 575.98px) {
	.dt-login__content-wrapper {
		-ms-flex-flow: column nowrap;
		flex-flow: column nowrap;
	}
}

.dt-login__bg-section {
	position: relative;
	padding: 3.2rem 3.2rem;
	/* background-image: url("../img/crypto.jpeg"); */
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (min-width: 576px) {
	.dt-login__bg-section {
		width: 60%;
	}
}

.dt-login__bg-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(to right top, #000000, #090909, #131313, #1A1A1A, #202020)!important; */
	background-color: #e5f3ff;
}

.dt-login__bg-section>* {
	position: relative;
	z-index: 2;
}

@media (max-width: 575.98px) {
	.dt-login__bg-section .dt-login__logo {
		margin-bottom: 4rem;
		-ms-flex-order: 1;
		order: 1;
	}
}

@media (min-width: 576px) {
	.dt-login__bg-section .dt-login__logo {
		margin-top: auto;
	}
}

@media (max-width: 575.98px) {
	.dt-login__bg-section .dt-login__bg-content {
		-ms-flex-order: 2;
		order: 2;
	}

	.dt-login__content-inner {
		padding: 4rem 3.2rem 2.2rem;
	}

	.dt-login__bg-section {
		padding: 3.2rem 3.2rem;
	}
}

@media (min-width: 576px) {
	.dt-login__content {
		width: 40%;
		height: 100vh;
		overflow: auto;
	}

	.dt-login__content-inner {
		padding: 15rem 3.2rem 2.2rem;
		/* height: 95vh; */
		/* overflow: auto; */
	}

	.dt-login__bg-section {
		padding: 10.2rem 3.2rem;
	}
}

.dt-login__content-footer {
	padding: 0.8rem 3.2rem;
	background-color: #f4f4f4;
}

.dt-login__title {
	position: relative;
	font-size: 3rem;
	color: black;
	display: inline-block;
	padding-bottom: 8px;
	margin-bottom: 2rem;
}

.dt-login__title:after {
	content: "";
	display: block;
	height: 3px;
	width: 28px;
	background-color: black;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	transition: all 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
	.dt-login__title:after {
		transition: none;
	}
}

.dt-login__content-wrapper:hover .dt-login__title:after {
	width: 100%;
}

.dt-forgot-password .dt-login__content-wrapper {
	max-width: 420px;
}

.dt-forgot-password .dt-login__content-wrapper .dt-login__content {
	width: 100%;
}

.dt-forgot-password .dt-login__content-wrapper .dt-login__logo {
	display: block;
	margin-left: 0;
	margin-bottom: 3rem;
}

.dt-lock-screen {
	background-image: url("../images/bg-image-1.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.dt-lock-screen:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.dt-lock-screen input[type="password"] {
	width: 320px;
}

@media (max-width: 575.98px) {
	.dt-lock-screen input[type="password"] {
		width: 250px;
	}
}

.dt-lock-screen .dt-login__content-wrapper {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	width: auto;
	background-color: transparent;
	box-shadow: none;
}

.dt-lock-screen .dt-avatar {
	margin-bottom: 2.5rem;
}

.profile__banner {
	position: relative;
	margin: -4.4rem -3.2rem -5.4rem;
	padding: 4.4rem 3.2rem 8rem;
	/* background: linear-gradient(to right top, #000000, #090909, #131313, #1A1A1A, #202020)!important; */
	color: black;
}

@media (max-width: 575.98px) {
	.profile__banner {
		margin-bottom: 3.2rem;
		padding-bottom: 3.2rem;
	}
}

.profile__banner-detail {
	position: relative;
	z-index: 2;
}

@media (min-width: 576px) {
	.profile__banner-detail {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
	}
}

.profile__banner-navigation {
	position: relative;
	z-index: 2;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 575.98px) {
	.profile__banner-detail .dt-avatar-wrapper {
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 4rem;
	}

	.profile__banner-detail .dt-avatar-wrapper .dt-avatar-info {
		text-align: center;
		margin-top: 2rem;
	}
}

.profile__banner-detail:not(:last-child) {
	margin-bottom: 9rem;
}

@media (max-width: 575.98px) {
	.profile__banner-detail:not(:last-child) {
		margin-bottom: 5rem;
	}
}

.profile__banner .dt-list {
	margin-left: -2.6rem;
	margin-right: -2.6rem;
}

.profile__banner .dt-list__item {
	padding-left: 2.6rem;
	padding-right: 2.6rem;
}

.profile-content .dt-list-col-4 .dt-list__item {
	margin-bottom: 4rem;
}

@media (max-width: 991.98px) {
	.profile-content .dt-list-col-4 .dt-list__item {
		width: 50%;
	}
}

@media (max-width: 575.98px) {
	.profile-content .dt-list-col-4 .dt-list__item {
		width: 100%;
	}

	.marg-t-0 {
		margin-top: 0px !important;
	}
}

.marg-t-17 {
	margin-top: -17em;
}

.profile__banner .navbar-nav {
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.profile__banner .nav-link {
	padding-left: 8px;
	padding-right: 8px;
	color: rgba(255, 255, 255, 0.85);
}

.profile__banner .nav-link:hover,
.profile__banner .nav-link:focus,
.profile__banner .nav-link:active {
	color: #fff;
}

.profile__banner .nav-item {
	padding-left: 10px;
	padding-right: 10px;
}

.profile__banner .nav-item.active .nav-link {
	color: #fff;
}

.search-result .search-heading {
	margin-bottom: 2px;
}

.search-result .search-link {
	color: #52c41a;
	display: inline-block;
	margin-bottom: 6px;
}

.search-result .search-link:hover,
.search-result .search-link:focus {
	color: #49ad17;
}

.search-result p:last-child {
	margin-bottom: 0;
}

.tv-ticker-item-tape__border-wrapper {
	font-size: 14px !important;
}

/* Scroll Bar */
.ps {
	overflow: hidden !important;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */

.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;
	/* there must be 'bottom' or 'top' for ps__rail-x */
	bottom: 0px;
	/* please don't change 'position' */
	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;
	/* there must be 'right' or 'left' for ps__rail-y */
	right: 0;
	/* please don't change 'position' */
	position: absolute;
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
	display: block;
	background-color: transparent;
}

.ps:hover>.ps__rail-x,
.ps:hover>.ps__rail-y,
.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y,
.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
	opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
	background-color: #eee;
	opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */

.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;
	/* there must be 'bottom' for ps__thumb-x */
	bottom: 2px;
	/* please don't change 'position' */
	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;
	/* there must be 'right' for ps__thumb-y */
	right: 2px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__rail-x:hover>.ps__thumb-x,
.ps__rail-x:focus>.ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
	background-color: #999;
	height: 11px;
}

.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
	background-color: #999;
	width: 11px;
}

/* MS supports */

@supports (-ms-overflow-style: none) {
	.ps {
		overflow: auto !important;
	}
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.ps {
		overflow: auto !important;
	}
}

.error {
	margin-bottom: 5px;
	font-size: 11px;
	color: #ff5959;
	min-height: 16px;
	display: block;
}

.logo-showcase-white {
	max-width: 250px;
	max-height: 50px;
	background: black;
	padding: 5px 15px;
	border-radius: 10px;
}

.logo-showcase-dark {
	max-width: 200px;
	max-height: 50px;
}

.logo-favicon {
	max-width: 500px;
	max-height: 50px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.upload-btn-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.upload-btn-wrapper input[type="file"] {
	width: 100%;
	height: 100%;
	font-size: 100px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.token-currency-choose:not(:last-child),
.token-contribute:not(:last-child),
.token-overview-wrap:not(:last-child) {
	margin-bottom: 20px;
}

.token-currency-choose,
.token-contribute,
.token-overview-wrap {
	margin-top: 20px;
}

.guttar-15px {
	margin-left: -7.5px !important;
	margin-right: -7.5px !important;
}

.pay-option-check:checked~label {
	border-color: #b258e4;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 480px) {
	.pay-option-label {
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
	}
}

.pay-option-label {
	width: 100%;
	background: #e6effb;
	border: 2px solid #e6effb;
	border-radius: 4px;
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.4s ease;
	margin-bottom: 15px;
	text-align: center;
}

.pay-option-check:checked~label:after {
	transform: translate(-50%, -50%) scale(1);
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

.pay-option-check {
	position: absolute;
	height: 1px;
	width: 1px;
	opacity: 0;
}

/* Margin styles */
.mb-1-5m {
	margin-bottom: 1.5em;
}

.mb-2m {
	margin-bottom: 2em;
}

.mt-1m {
	margin-top: 1em;
}

.mt-2m {
	margin-top: 2em;
}

.mt-3-2m {
	margin-top: 3.2em;
}

.mt--20p {
	margin-top: -20px;
}

.mt--30p {
	margin-top: -30px;
}

.mr-1m {
	margin-right: 1em;
}

.ml--15p {
	margin-left: -15px;
}

.m--30p {
	margin: -30px;
}

/* Padding Styles */
.p-0p {
	padding: 0;
}

.p-0-5m {
	padding: 0.5em;
}

.pt-10p {
	padding-top: 10px;
}

.p-0-35p {
	padding: 0px 35px;
}

.p-0-3m {
	padding: 0.3em;
}

/* Display Styles */
.display-b {
	display: block;
}

.display-n {
	display: none;
}

.display-i {
	display: inline;
}

/* Width Styles */
.w-100 {
	width: 100%;
}

.w-20rm {
	width: 20rem;
}

.mx-w-100p {
	max-width: 100px;
}

/* Height Styles */
.mh-100p {
	max-height: 100px;
}

/* Opacity Styles */
.op-1 {
	opacity: 1;
}

/* Line Height */
.lh-40p {
	line-height: 40px;
}

/* Float Styles */
.ft-right {
	float: right;
}

/* Z-index */
.z20 {
	z-index: 20;
}

.z0 {
	z-index: 0;
}

/* Fonts */
.font-in {
	font-size: inherit;
}

.font-14p {
	font-size: 14px;
}

.font-15p {
	font-size: 15px;
}

.font-1-2m {
	font-size: 1.2em;
}

/*Text Alignment */
.txt-left {
	text-align: left;
}

.txt-center {
	text-align: center;
}

/*Overflow Styles */
.o-auto {
	overflow: auto;
}

@media (max-width: 767px) {
	.sm-hidden {
		display: none;
	}

	.clock {
		padding-left: 6em !important;
	}
}

.dashed-line {
	border: 1px dashed grey;
}

.crypto-note {
	background: #f8f8f8;
	padding: 0.5em;
	border: 1px solid #e8e8e8;
}

.crypto-note-button {
	padding: 0;
	font-size: inherit;
	width: 100%;
	text-align: left;
}

.border-n {
	border: none;
}

.methImg {
	max-width: 130px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	margin-bottom: -35px;
}

.trans-btn {
	padding: 0.45rem 0.8rem;
}

.breadcrumb-arrow-right::after {
	content: "\f105";
	font-family: "fontello";
	color: inherit;
	transition: all 100ms ease;
}

.breadcrumb-arrow-right::after {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}

.loader {
	animation: animate 1.5s linear infinite;
	clip: rect(0, 80px, 80px, 40px);
	height: 80px;
	width: 80px;
	position: absolute;
	left: calc(50% - 40px);
	top: calc(50% - 40px);
}

@keyframes animate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(220deg);
	}
}

.loader:after {
	animation: animate2 1.5s ease-in-out infinite;
	clip: rect(0, 80px, 80px, 40px);
	content: "";
	border-radius: 50%;
	height: 80px;
	width: 80px;
	position: absolute;
}

@keyframes animate2 {
	0% {
		box-shadow: inset #0076e4 0 0 0 17px;
		transform: rotate(-140deg);
	}

	50% {
		box-shadow: inset #0076e4 0 0 0 2px;
	}

	100% {
		box-shadow: inset #0076e4 0 0 0 17px;
		transform: rotate(140deg);
	}
}

.green {
	color: green;
}

.red {
	color: red;
}

.border-line {
	border-top: 1px solid grey;
}

.testsms-email {
	border: 1px dashed grey;
	padding: 5px;
	text-align: center;
	cursor: pointer;
}

.reveal {
	cursor: pointer;
}

.width-phone {
	padding: 0 !important;
	padding-left: 75px !important;
}

.langBox {
	padding: 0;
	min-height: 5rem;
	margin-left: -3rem;
}

.width-phone {
	padding: 0 !important;
	padding-left: 75px !important;
}

#partitioned {
	padding-left: 15px;
	letter-spacing: 42px;
	border: 0;
	height: 45px;
	background-image: linear-gradient(to left,
			black 70%,
			rgba(255, 255, 255, 0) 0%);
	background-position: bottom;
	background-size: 50px 1px;
	background-repeat: repeat-x;
	background-position-x: 35px;
	width: 350px;
	min-width: 350px;
}

#partitioned:focus {
	outline: none;
}

#divInner {
	left: 0;
	position: sticky;
}

#divOuter {
	width: 300px;
	overflow: hidden;
}

.authypartitioned {
	width: 375px !important;
}

.authydivOuter {
	width: 350px !important;
	overflow: hidden;
}

.text-black {
	color: black;
}

.theme-clr {
	color: var(--primary) !important;
}

.login-main {
	width: 100%;
	height: 100%;
	font-family: "Lato", sans-serif;
}

.login-img-section {
	transition: 0.3s ease;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left top;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 68%;
}

.login-img-section.active {
	transform: translateX(47.5%);
	background-position: right top;
}

.login-img-section h1 {
	margin: 0 0 7px 0;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 1px;
	color: white;
}

.login-img-section p {
	margin: 0 0 42px 0;
	font-weight: 400;
	font-size: 14px;
	color: white;
	letter-spacing: 1px;
}

.sign-up-in-btn {
	background-color: transparent;
	outline: none !important;
	width: 233px;
	height: 35px;
	border: 1px solid #ffffff;
	border-radius: 7px;
	font-size: 13px;
	letter-spacing: 0.2px;
	color: #ffffff;
	display: grid;
	place-items: center;
	color: white;
}

.sign-up-in-btn:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

*::-webkit-scrollbar {
	background-color: transparent;
	width: 7px;
}

*::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 7px;
}

.login-signup-section {
	background-color: white;
	min-height: 100vh;
	overflow-y: auto;
	padding: 17px 50px 50px 50px;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	width: 32%;
	transition: 0.3s ease;
}

.login-signup-section.active {
	transform: translateX(-212%);
}

.login-section.hide {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

.signup-section {
	display: none;
}

.signup-section.active {
	display: block;
	z-index: 10;
}

.login-logo {
	width: 150px;
	margin: 50px 0 85px 0;
}

.login-text {
	font-size: 34px;
	text-align: left;
	margin: 0 0 9px 0;
	color: #314266;
	font-weight: 700;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-text-p {
	margin: 0 0 19px 0;
	color: #314266;
	font-size: 14px;
	font-weight: 400;
}

.theme-textarea {
	color: #314266;
	margin-bottom: 16px;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	text-align: left;
	font-size: 13px;
	outline: none;
	padding: 12px 14px;
	width: 100%;
	resize: none;
	height: 190px;
}

.theme-input,
.theme-select {
	color: #314266;
	height: 50px;
	width: 100%;
	margin-bottom: 16px;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	text-align: left;
	font-size: 13px;
	outline: none;
	padding-left: 11px;
}

.theme-input::placeholder,
.theme-textarea::placeholder {
	color: #d9d9d9;
}

.theme-select {
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 8px;
}

.login-checkbox {
	margin: 0 0 38px 0;
}

.login-checkbox .text {
	color: #314266 !important;
	font-size: 14px !important;
	margin: 0 0 0 10px;
}

.login-btn {
	width: 100%;
	height: 35px;
	background: #00c9fd 0% 0% no-repeat padding-box;
	border-radius: 7px;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #ffffff;
	text-align: center;
	border: none;
	outline: none;
	margin-bottom: 88px;
	outline: none !important;
}

.forgot-pass {
	font-size: 14px;
	letter-spacing: 0.28px;
	color: #00c9fd;
	text-align: center;
}

.signup-h1 {
	color: #314266;
	font-size: 34px;
	margin: 29px 0 2px 0;
	font-weight: 700;
}

.signup-p {
	color: #314266;
	font-size: 14px;
	margin: 0 0 30px 0;
	font-weight: 400;
}

.signup-tabs {
	color: #d9d9d9;
	font-size: 15px;
	margin-bottom: 39px;
	position: relative;
	cursor: pointer;
}

.signup-tabs.active::after {
	content: "";
	background-color: #00c9fd;
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: -4px;
	left: 0;
	right: 0;
}

.signup-tabs.active {
	color: #00c9fd;
	font-weight: 700;
}

.personal-acc {
	margin-right: 16px;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.country-cols:first-of-type {
	padding-right: 15px;
}

.country-cols:nth-of-type(2) {
	padding: 0 15px;
}

#phoneVerfication-main {
	margin: 15px 0;
}

.country-cols:last-of-type {
	padding-left: 15px;
}

.signup-checkbox {
	color: #314266;
	font-size: 14px;
	font-weight: 400;
}

.signup-checkbox a {
	font-weight: 700;
}

.email-col {
	padding-left: 10px;
}

.storeNameInput {
	padding-right: 10px;
}

.birth-text {
	margin: 0 0 4px 0;
	color: #314266;
	font-weight: 400;
}

.pl-10-md-rem {
	padding-left: 10px;
}

.pr-10-md-rem {
	padding-right: 10px;
}

.aside-logo-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 54px;
	margin-bottom: 63px;
}

.dt_nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 32px 0 55px 0;
}

.today_date {
	color: #8d8d8d;
	font-weight: 400;
	font-size: 14px;
	margin: 0;
}

.dt-header-avatar {
	width: 42px;
	height: 42px;
	box-shadow: 0px 6px 6px #0000001a;
	object-fit: cover;
	object-position: top;
	border-radius: 50%;
}

.nav-avatar-name {
	margin: 0 0 0 17px;
	color: #314266;
	font-size: 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 140px;
	overflow: hidden;
}

.dt-avatar-info::after {
	content: "\f107";
	font-family: "fontello";
	color: #95a6b7;
	transition: all 100ms ease;
	right: 0;
	top: 0;
	position: absolute;
}

.db-cards-col:nth-of-type(even) {
	padding-left: 15px;
}

.db-cards-col:nth-of-type(odd) {
	padding-right: 15px;
}

.db-cards {
	border: 1px solid #d9d9d9;
	border-radius: 25px;
	padding: 23px 28px 42px 28px;
	margin-bottom: 30px;
	background-repeat: no-repeat;
	background-position: right 8px bottom;
}

.db-cards h1,
.db-cards-h1 {
	text-align: left;
	font-size: 22px;
	letter-spacing: 0.33px;
	color: #314266;
	font-weight: 700;
	margin: 0 0 25px 0;
}

.db-cards h2 {
	margin: 0 0 25px 0;
	font-size: 15px;
	letter-spacing: 0.23px;
	color: #95a6b7;
}

.db-cards h3 {
	word-break: break-all;
	text-align: left;
	font-size: 42px;
	letter-spacing: 0.66px;
	color: #314266;
	margin: 0;
	font-weight: 700;
}

.db-cards h4,
.db-cards-h4 {
	text-align: left;
	font-size: 15px;
	letter-spacing: 0.23px;
	color: #314266;
	font-weight: 400;
}

.db-cards img {
	margin-right: 15px;
}

.db-cards-col.small h1 {
	font-size: 18px;
}

.db-cards-col.small h3 {
	font-size: 26px;
}

.db-cards-col.small h4 {
	font-size: 13px;
}

.theme-table-main {
	border: 1px solid #d9d9d9;
	border-radius: 25px;
	padding: 20px 28px 24px 28px;
}

.theme-table-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.account-statment-table-head {
	margin-bottom: 29px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.theme-card-h {
	text-align: left;
	font-size: 22px;
	letter-spacing: 0.33px;
	color: #314266;
	margin: 0;
	font-weight: 700;
}

.mb-38 {
	margin-bottom: 38px !important;
}

.table-view-all {
	display: block;
	border-radius: 7px;
	padding: 7px 15px;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #ffffff;
	text-align: center;
	background-color: #00c9fd;
}

.table-view-all:hover {
	box-shadow: 0px 6px 6px #00c9fd45;
	color: white;
}

.theme-table {
	width: 100%;
	border-collapse: collapse;
}

.theme-table thead {
	background-color: #f8f8f8;
}

.theme-table th:first-child {
	padding-left: 20px !important;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.theme-table th:last-child {
	padding-right: 20px !important;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.theme-table th {
	white-space: nowrap;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #314266;
	font-weight: 700;
}

.theme-table td:first-child {
	padding-left: 20px !important;
}

.theme-table td:last-child {
	padding-right: 20px !important;
}

.theme-table td,
.theme-table th {
	padding: 13px 8px;
}

.theme-table td {
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.18px;
	color: #314266;
	border-bottom: 1px solid #ececec;
	font-weight: 600;
}

.theme-table td:last-of-type,
.theme-table th:last-of-type {
	text-align: right;
}

.user-account-info {
	margin: 0 0 0 17px;
	color: #7e8dab;
	font-size: 12px;
}

.lang-dropdown.show {
	left: -71px !important;
}

/* .account-dropdown.show {
  left: auto !important;
} */
.account-dropdown {
	width: 185px;
}

.acc-drop-svgs path {
	fill: #95a6b7;
}

.account-dropdown .dropdown-item:hover .acc-drop-svgs path {
	fill: var(--primary);
}

.card-no-img {
	width: 17px;
	margin: 0 7px 0 13px !important;
	height: 19px;
}

.card-no {
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #314266;
	margin: 0;
}

.card-no .not-active,
.not-active {
	color: #d32c1f;
	font-size: 10px;
	margin: 0 0 0 2px;
}

.no-card-yet {
	color: #d32c1f;
	margin: 0 0 0 10px;
	font-size: 14px;
}

.click-request,
.click-to-active-card {
	color: var(--primary);
	margin: 0 0 0 10px;
	font-size: 14px;
}

.verified-icon {
	position: absolute;
	bottom: -2px;
	left: -11px;
}

.calendar-input-main {
	position: relative;
}

.calendar-input::-webkit-calendar-picker-indicator {
	background: transparent;
	z-index: 50;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}

.calendar-input-img {
	position: absolute;
	right: 19px;
	top: 11px;
	width: 16px;
}

.account-statment-table-head .calendar-input-main {
	margin-right: 17px;
}

.account-statment-table-head input {
	width: 170px;
}

.theme-btn {
	outline: none !important;
	text-align: center;
	font-size: 14px;
	color: #aaaaaa !important;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	background-color: #f1f1f1;
	padding: 7px 13px;
	font-weight: 500;
	min-height: 35px;
	cursor: pointer;
}

.theme-btn:hover {
	box-shadow: 0px 6px 6px #00c9fd45;
	color: white !important;
	background-color: var(--primary);
	border-color: var(--primary);
}

.theme-card {
	border: 1px solid #d9d9d9;
	border-radius: 25px;
	padding: 22px 28px;
}

.theme-card-h1 {
	font-size: 22px;
	color: #314266;
	font-weight: 700;
	margin: 0 0 38px 0;
}

.theme-label {
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #314266;
	margin: 0 0 7px 13px;
	font-weight: 500;
}

.no-trans-found {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #eff3fa;
	height: 270px;
	border-radius: 25px;
}

.no-found-img-div {
	width: 84px;
	height: 84px;
	background-color: white;
	border-radius: 50%;
}

.no-trans-found h1 {
	margin: 13px 0 0 0;
	text-align: center;
	font-size: 16px;
	letter-spacing: 0.64px;
	color: #314266;
}

.to-main-db {
	display: flex;
	align-items: center;
	margin-bottom: 58px;
	margin-left: 19px;
}

.to-main-db span {
	text-align: left;
	font-size: 15px;
	letter-spacing: 0.3px;
	color: #95a6b7;
	margin: 0 0 0 15px;
}

.dt-module-side-nav {
	margin-left: 19px;
}

.to-main-db:hover span {
	color: var(--primary);
}

.ticket-subject {
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.18px;
	color: #314266;
	margin-right: 10px;
}

.ticket-subject-text {
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.18px;
	color: #686868;
}

.dt-sidebar--folded .dt-module-side-nav,
.dt-sidebar--folded .to-main-db {
	margin-left: 0;
}

.dt-sidebar--folded .to-main-db span,
.dt-sidebar--folded .dt-module-side-nav__text {
	display: none;
}

.dt-sidebar--folded .dt-module__sidebar {
	padding: 0 14px;
}

.dt-sidebar--folded .aside-checkbox {
	display: none;
}

.dt-sidebar--expended .dt-module__sidebar {
	padding: 0;
}

.dt-sidebar--expended .dt-module-side-nav__text,
.dt-sidebar--expended .to-main-db span {
	display: inline-block;
}

.dt-sidebar--expended .dt-module-side-nav,
.dt-sidebar--expended .to-main-db {
	margin-left: 19px;
}

.dt-sidebar--expended .aside-checkbox {
	display: block;
}

.mt-md-25 {
	margin-top: 25px;
}

/* custom checbox */
.theme-toggle {
	position: relative;
	width: 46px;
	height: 21px;
	overflow: hidden;
}

.theme-toggle .knobs,
.theme-toggle .layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.theme-toggle.r,
.theme-toggle.r .layer {
	border-radius: 25px;
}

.theme-toggle.b2 {
	border-radius: 2px;
}

.theme-toggle .checkbox {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 3;
}

.theme-toggle .knobs {
	z-index: 2;
}

.theme-toggle .layer {
	width: 100%;
	background-color: var(--primary);
	transition: 0.3s ease all;
	z-index: 1;
}

.theme-toggle .knobs:before {
	content: "";
	position: absolute;
	top: 3px;
	left: 4px;
	width: 15px;
	height: 15px;
	color: #fff;
	background-color: var(--primary);
	border-radius: 50%;
	transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
	border: 2px solid white;
}

.theme-toggle .checkbox:active+.knobs:before {
	width: 36px;
	border-radius: 100px;
}

.theme-toggle .checkbox:checked:active+.knobs:before {
	margin-left: -20px;
}

.theme-toggle .checkbox:checked+.knobs:before {
	content: "";
	left: 27px;
	background-color: white;
}

/* custom checbox */
.click-to-switch {
	margin: 4px 14px 0 16px;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #00c9fd;
}

.lang_btn {
	border: none;
	background-color: transparent;
	outline: none !important;
}

.ticket-textarea {
	width: 100%;
	border-radius: 25px;
	border: none;
	padding: 13px 15px;
	min-height: 45px !important;
	height: auto !important;
	outline: none !important;
}

.ticket-subject-text1 {
	font-size: 17px;
	color: #314266;
	font-weight: 600;
	margin: 0 0 35px 0;
}

.ticket-subject-text1 span {
	font-weight: 400;
	font-size: 16px;
	color: grey;
}

.after-none::after {
	content: "";
}

.nav-dropdown::after {
	top: 7px;
}

.acc-stat-search-btn {
	margin-left: 17px;
}

.help-desk-alert::after {
	left: 25px;
	top: 7px;
}

.theme-sm-modals {
	max-width: 682px !important;
	width: 682px !important;
}

.theme-md-modals {
	max-width: 880px !important;
	width: 880px !important;
}

.theme-lg-modals {
	max-width: 1080px !important;
	width: 1080px !important;
}

.theme-xl-modals {
	max-width: 1280px !important;
	width: 1280px !important;
}

#tr-with-mth,
.method-label {
	font-weight: 600;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #314266;
}

.modal-close {
	position: absolute;
	top: 22px;
	right: 25px;
	cursor: pointer;
}

.theme-modal {
	padding-top: 79px;
	background-repeat: no-repeat;
	background-position: left top;
}

.search-input-main {
	position: relative;
}

.search-input-img {
	position: absolute;
	top: 10px;
	right: 10px;
}

.qr-main {
	padding: 50px 50px 50px 110px;
	border: 1px solid #d9d9d9;
	border-radius: 25px;
	background-repeat: no-repeat;
	background-position: right bottom;
}

.set_img_tabs {
	margin-right: 100px;
}

.download-qr {
	margin-right: 100px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	margin-top: -22px;
	letter-spacing: 0.26px;
	color: #00c9fd;
}

.qr-text-main h1 {
	text-align: left;
	font-size: 22;
	font-weight: 700;
	letter-spacing: 0.44px;
	color: #314266;
	margin-bottom: 9px;
}

.qr-text-main p {
	color: #828282;
	font-size: 15px;
	margin-bottom: 25px;
}

.qr-div {
	display: flex;
	align-items: center;
}

#paymentData,
#paymentDataDetail {
	padding: 0 70px;
}

#paymentData .enter-emial {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.21px;
	color: #314266;
}

.modal-note {
	background-color: #f2f2f2;
	padding: 20px 70px;
	text-align: center;
}

.modal-note p {
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #314266;
	margin: 0;
	line-height: 1.3;
}

.theme-avatar {
	box-shadow: 0px 2px 6px #00000029;
	border-radius: 16px;
	width: 83px;
	height: 87px;
	object-fit: cover;
	object-position: top;
	margin-right: 13px;
}

.theme-avatar-info h1 {
	text-align: left;
	font-size: 18px;
	letter-spacing: 0.36px;
	color: #314266;
	margin: 0;
	font-weight: 600;
}

.theme-avatar-info span {
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.28px;
	color: #b4b4b5;
}

.mb-40 {
	margin-bottom: 40px;
}

.modal_text_d:last-of-type {
	border-bottom: 0;
}

.modal_text_d {
	border-bottom: 1px solid #f2f2f2;
	padding: 9px 15px;
	display: flex;
	width: 100%;
}

.card-detail-h {
	width: auto;
}

.modal_text_d h6,
.card-detail-h {
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.28px;
	color: #314266;
	margin: 0;
}

.modal_text_d p,
.card-detail-p {
	text-align: left;
	font-size: 14px;
	margin: 0;
	letter-spacing: 0.28px;
}

.cancel-btn:hover {
	background-color: #ff6873;
	box-shadow: none;
	border-color: #ff6873;
}

.iti__selected-flag {
	border-radius: 20px 0 0 19px;
}

.profile-div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.profile-img {
	box-shadow: 0px 2px 6px #00000029;
	border-radius: 25px;
	width: 141px;
	height: 147px;
	object-fit: cover;
	object-position: top;
	margin-right: 25px;
}

.profile-name {
	text-align: left;
	font-size: 18px;
	letter-spacing: 0.36px;
	color: #314266;
	font-weight: 700;
	margin: 0 0 1px 0;
}

.profile-email {
	word-break: break-word;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.28px;
	color: #b4b4b5;
	margin: 0;
}

.change-profile-img-main {
	position: absolute;
	bottom: 0;
	right: 0;
}

.buss-acc-text {
	text-align: left;
	font-size: 18px;
	letter-spacing: 0.36px;
	color: #314266;
	margin: 0 0 1px 0;
	font-weight: 700;
}

.buss-acc-amount {
	text-align: left;
	font-size: 18px;
	letter-spacing: 0.36px;
	color: #b4b4b5;
	margin: 0 0 1px 0;
}

.buss-acc-balance {
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.36px;
	color: #314266;
	margin: 0;
}

.profile-wrapper {
	background-repeat: no-repeat;
}

.upload-btn-wrapper-d {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.upload-btn-wrapper-d input[type="file"] {
	position: absolute;
	left: 0;
	cursor: pointer !important;
	top: 0;
	opacity: 0;
}

.document-plus:hover {
	color: #008cff;
	border-color: var(--primary);
}

.document-del:hover {
	color: #d32c1f;
	border-color: #d32c1f;
}

.document-plus,
.document-del {
	color: #a4a4a4;
	font-size: 11px;
	cursor: pointer;
	border-radius: 50%;
	border: 1px solid #a4a4a4;
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	margin-left: 1rem;
}

.profile-tabs::-webkit-scrollbar {
	display: none;
}

.profile-tabs {
	overflow-x: auto;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
	margin: 0 0 32px 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.langSelect {
	border: none;
	outline: none !important;
}

.profile-tabs li a,
.langSelect {
	white-space: nowrap;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.28px;
	color: #b4b4b5;
	padding: 0 18px 6px 18px;
	background-color: #fbfdff !important;
	position: relative;
}

.profile-tabs li a.active,
.langSelect.dt-contact-active {
	color: var(--primary);
	font-weight: 700;
	background-color: #fbfdff !important;
}

.profile-tabs li a.active::after,
.langSelect.dt-contact-active::after {
	content: "";
	width: 40px;
	height: 3px;
	background-color: var(--primary);
	position: absolute;
	bottom: 0;
	left: 18px;
}

.profile-tabs-h1 {
	text-align: left;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.44px;
	color: #00c8fc;
	margin-bottom: 40px;
}

.profile-tabs-h2 {
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.27px;
	color: #314266;
	margin-bottom: 30px;
}

#emailSecondaryCheck {
	margin-left: 13px;
}

.profile-tel-input .iti__selected-flag {
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
	/* padding-left: 13px;
    padding-right: 13px; */
	border-right: 1px solid #c6c7c7;
	background-color: #f3f3f3;
}

.mt-lg-25 {
	margin-top: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.about-card-h1 {
	text-align: left;
	font-size: 18px;
	letter-spacing: 0.27px;
	color: #314266;
	margin-bottom: 21px;
	font-weight: 700;
	margin-top: 42px;
}

.about-card-h1:first-of-type {
	margin-top: 0;
}

.about-card-p {
	margin-bottom: 13px;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #84878e;
}

.profile-cards {
	margin-bottom: 42px;
}

.about-card-ul-div ul,
.about-card-ul {
	padding: 0 0 0 18px;
	list-style: none;
}

.about-card-ul-div ul li,
.about-card-ul li {
	position: relative;
	margin-bottom: 13px;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #84878e;
}

.about-card-ul-div ul li:before,
.about-card-ul li:before {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	background: #00c8fc;
	border-radius: 1px;
	left: -17px;
	top: 7px;
}

.proceed-to-order-main {
	align-items: center;
	justify-content: flex-end;
	margin-top: 21px;
	margin-bottom: 43px;
}

.about-card-a {
	font-weight: 700;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.21px;
	color: #00c8fc;
	margin-right: 30px;
	margin-bottom: 0;
}

.new-card-shaded {
	background-color: #edf9fe;
	border-radius: 6px;
	margin-bottom: 35px;
	padding: 18px 24px;
}

.about-card-bold {
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.28px;
	margin: 0 4px 0 0;
	color: #314266;
}

.about-card-p {
	margin: 0;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.28px;
	color: #b4b4b5;
}

.table-btn {
	white-space: nowrap;
	padding: 4px 10px !important;
	min-height: 27px;
}

.view-charges {
	padding: 4px 10px !important;
	margin-left: 5px;
}

.view-charges:hover {
	color: white;
	background-color: #04f489 !important;
	border-color: #04f489 !important;
	box-shadow: 0px 6px 6px #04f4894f;
}

.theme-input:read-only {
	background-color: #f1f1f1;
}

.theme-danger-hover:hover {
	border-color: var(--danger) !important;
	background-color: var(--danger) !important;
	box-shadow: 0 0 #000 !important;
}

.kyc-mail {
	text-align: left;
	font-size: 13px !important;
	letter-spacing: 0.18px;
	color: #aaaaaa !important;
	margin: 0;
}

.kyc-badge {
	border-radius: 4px;
	text-align: left;
	font-size: 10px;
	letter-spacing: 0.2px;
	color: #ffffff;
	margin: 0;
	padding: 4px 10px;
}

.kyc-badge.approved {
	background-color: #21f597;
}

.kyc-icon-btn {
	padding: 0;
	border: none;
	background-color: transparent;
	margin-right: 12px;
	outline: none !important;
}

.kyc-icon-btn img {
	width: 20px;
	height: 15px;
}

.theme-input-group {
	display: flex;
	margin-bottom: 16px;
	width: 100%;
	height: 35px;
}

.theme-input-group input {
	height: 100%;
	flex: 1;
	border: 1px solid #d9d9d9;
	border-radius: 7px 0 0 7px;
	text-align: left;
	font-size: 13px;
	outline: none;
	padding-left: 11px;
	color: #314266;
	margin-right: -1px;
	border-right: 0;
	width: 0;
}

.input-group-span {
	display: flex;
	align-items: center;
	padding: 1.06rem 1.7rem;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #495057;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: 0 7px 7px 0;
}

.mt-138-xl {
	margin-top: 138px;
}

a.bfh-selectbox-toggle.form-control {
	border: 1px solid #d9d9d9 !important;
	border-radius: 7px !important;
	padding: 7px 2px 7px 11px !important;
	height: auto !important;
}

.lang-card {
	background-color: white;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.profile-changer {
	width: 34px;
	height: 34px;
	background-color: #00c8fc !important;
	border: none;
	border-radius: 50%;
	padding: 0 0 4px 0;
	outline: none;
}

.mbl-menu {
	display: none;
	margin-right: 20px;
}

.aside-logo {
	width: 144px;
}

.theme-footer {
	display: flex;
	justify-content: center;
	margin: 26px 0 29px 0;
}

.card-detail-modal {
	padding: 0 70px;
}

.card-detail-text {
	color: #314266;
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 600;
}

.modal-h3 {
	margin-left: 2rem;
	margin-bottom: 28px;
	font-weight: 600;
	color: #314266;
}

.mt-103-md {
	margin-top: 103px;
}

#inputGroupPrepend2 {
	margin: 15px 0 0 0;
	color: #314266;
	font-size: 17px;
}

.modal-doc-main {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
}

.modal-doc-main embed {
	max-width: 100%;
	max-height: 100%;
}

.i-rquest-alert::after {
	left: 8px;
	top: -9px;
}

.receipt-main {
	width: 100%;
	background-color: #ebf6fd;
	border: 2px solid #363636;
	border-radius: 1px;
	padding: 20px;
}

.receipt-h1 {
	font-size: 18px;
	color: #314266;
	margin: 0 0 2px 0;
	font-weight: 600;
}

.receipt-h2 {
	font-size: 17px;
	color: #314266;
	margin: 0 0 2px 0;
}

.receipt-number {
	width: 100px;
	font-size: 10px;
	font-weight: 400;
	color: #314266;
	margin: 0;
}

.receipt-main .date-field {
	width: 180px;
	margin-bottom: 25px;
	border-bottom: 2px solid #444;
}

.receipt-main .date-field-text {
	margin: 0;
	color: #444;
	font-weight: 600;
	text-align: end;
	font-size: 13px;
}

.payTo-text {
	margin: 0;
	color: #444;
	font-weight: 600;
	font-size: 14px;
	width: 80px;
}

.payTo-field {
	flex: 1;
	border-bottom: 2px solid #444;
	margin-top: 27px;
}

.payTo-dzd {
	margin: -18px 0 0 0;
	color: #444;
	font-weight: 600;
	text-align: end;
	font-size: 13px;
}

.withdrawl-amount {
	font-size: 22px;
	text-align: end;
	margin: 0;
	color: #314266;
	font-weight: 600;
}

.recipt-logo {
	margin: 30px 0;
	width: 130px;
}

.width-auto {
	width: auto;
}

.sign {
	width: 100%;
	margin: -9px 0 0 0;
	background-color: var(--primary);
	color: white !important;
}

/* RESPONSIVE CODE */
@media (max-width: 1200px) {
	.mt-138-xl {
		margin-top: 50px;
	}

	.db-cards h3 {
		font-size: 35px;
	}

	.dt-content {
		padding: 0 30px 50px 30px;
	}
}

@media (max-width: 1100px) {
	.login-signup-section {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (max-width: 1000px) {
	.login-signup-section {
		width: 40%;
	}

	.login-img-section {
		width: 60%;
	}

	.login-img-section.active {
		transform: translateX(67%);
	}

	.login-signup-section.active {
		transform: translateX(-150%);
	}
}

@media (max-width: 992px) {
	.dt-content-wrapper {
		width: 100%;
	}

	.dt-side-nav__arrow:after {
		margin-right: 10px;
	}

	.mbl-menu {
		display: block;
	}

	.mt-lg-25 {
		margin-top: 0;
	}

	.db-cards h1,
	.db-cards-h1 {
		font-size: 18px;
	}

	.db-cards h2 {
		font-size: 13px;
	}

	.db-cards h3 {
		font-size: 26px;
	}

	.db-cards h4,
	.db-cards-h4 {
		font-size: 13px;
	}

	.signup-h1 {
		font-size: 30px;
	}
}

@media (max-width: 900px) {
	.qr-main {
		padding: 50px 30px 50px 30px;
	}

	.qr-div {
		flex-direction: column;
	}

	.align-self-center-900 {
		align-items: center;
	}

	.download-qr {
		margin-bottom: 50px;
	}

	.set_img_tabs,
	.download-qr {
		margin-right: 0;
	}

	.login-signup-section {
		width: 50%;
	}

	.login-img-section {
		width: 50%;
	}

	.login-img-section.active {
		transform: translateX(100%);
	}

	.login-signup-section.active {
		transform: translateX(-100%);
	}
}

@media (max-width: 768px) {
	.recipt-logo {
		margin: 20px 0 30px;
	}

	.withdrawl-amount {
		margin-top: 20px;
	}

	.profile-div {
		flex-direction: column;
		align-items: baseline;
	}

	.dt-avatar-wrapper {
		margin-bottom: 22px;
	}

	.dt-content {
		margin: 20px 10px 0 10px;
	}

	.mt-103-md {
		margin-top: 0;
	}

	.account-statment-table-head {
		flex-direction: column;
		align-items: flex-end;
	}

	.acc-stat-search-btn {
		width: 170px;
	}

	.account-statment-table-head .calendar-input-main {
		margin-bottom: 20px;
	}

	.account-statment-table-head .calendar-input-main:last-of-type {
		margin-right: 0;
	}

	.db-cards img {
		width: 50px;
	}

	.dt-page__title,
	.db-cards h3,
	.theme-card-h {
		font-size: 17px;
	}

	.db-cards h1,
	.db-cards-h1 {
		font-size: 15px;
	}

	.theme-table th {
		font-size: 13px;
	}

	.about-card-a {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.proceed-to-order-main {
		flex-direction: column;
	}

	.profile-cards {
		margin-bottom: 50px;
	}

	.mt-md-25 {
		margin-top: 0;
	}

	.theme-table-main {
		padding: 20px 20px 24px 20px;
	}

	.theme-card {
		padding: 15px 10px 20px 10px;
	}

	.db-cards {
		padding: 23px 20px 42px 20px;
	}

	.theme-table td,
	.theme-table th {
		min-width: 100px;
	}

	.dt-content {
		padding: 0 10px 50px 10px;
	}

	.login-signup-section,
	.login-img-section {
		position: inherit !important;
		width: 100% !important;
	}

	.login-main {
		display: flex;
		flex-direction: column-reverse;
	}

	.login-signup-section {
		min-height: auto;
		padding-left: 20px;
		padding-right: 20px;
	}

	.login-img-section {
		padding: 50px 20px;
	}

	.login-img-section h1 {
		font-size: 20px;
	}

	.login-img-section p {
		font-size: 12px;
		margin-bottom: 30px;
	}

	.login-text {
		font-size: 25px;
	}

	.login-img-section.active {
		transform: translateX(0);
	}

	.login-signup-section.active {
		transform: translateX(0);
	}

	.storeNameInput,
	.pr-10-md-rem {
		padding-right: 1.6rem;
	}

	.pl-10-md-rem {
		padding-left: 1.6rem;
	}
}

@media (max-width: 576px) {
	.account-dropdown.show {
		right: 0 !important;
		left: auto !important;
		transform: translate3d(0, 42px, 0px) !important;
	}

	.modal-note {
		padding: 20px 30px;
	}

	#paymentData,
	#paymentDataDetail,
	.card-detail-modal {
		padding: 0 30px;
	}

	.account-statment-table-head .calendar-input-main {
		width: 100%;
		margin-right: 0;
	}

	.account-statment-table-head input {
		width: 100%;
	}

	.acc-stat-search-btn {
		width: 100%;
		margin-top: 20px;
		margin-left: 0;
	}

	.w-100-sm {
		width: 100%;
	}

	.click-to-switch {
		margin-left: 0;
	}

	.modal-note {
		padding: 20px;
	}
}

/* bottom-footer css starts */
.bottom-footer {
	background-color: #eff3fa;
	padding: 32px 20px;
	margin: 0 20px;
}

.bottom-footer-menu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.bottom-footer-menu a {
	font-size: 14px;
	text-align: left;
	font-family: lato-r;
	letter-spacing: 0px;
	color: #707070;
}

.bottom-footer-menu a:hover {
	color: #3c4f5d;
	font-family: lato-b;
}

.lang-menu a:hover {
	color: #003777;
	font-family: lato-r;
}

.copy-right-text p {
	text-align: right;
	font-size: 14px;
	font-family: lato-r;
	letter-spacing: 0px;
	color: #707070;
	opacity: 1;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.bottom-footer {
		margin: 0 10px;
		padding: 32px 0px;
	}

	.bottom-footer-menu {
		justify-content: space-evenly;
	}

	.copy-right-text p {
		text-align: center;
	}
}

#transactionfeemessage {
	color: #f37171;
	margin: 10px;
	padding: 10px 0px;
}

/* register start */

.registerSec {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.registerSec {
	padding: 25px 0;
	height: 100%;
	position: relative;
	min-height: 100vh;
	max-height: 100vh;
}

/* .registerSec::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #3C4F5D;
  width: 2px;
  height: 85%;
  border-radius: 10px;
} */

.registerLeftSec__ {
	padding: 35px 0;
}

.registerLeftSec__Heading {
	margin-bottom: 15px;
}

.registerLeftSec__Heading>* {
	font-size: 32px;
	line-height: 28px;
	color: #3c4f5d;
	font-family: lato-b;
	margin-bottom: 0;
}

.registerLeftSec__Para {
	margin-bottom: 35px;
}

.registerLeftSec__Para>* {
	font-size: 15px;
	line-height: 18px;
	color: #3c4f5d;
	font-family: lato-r;
	margin-bottom: 0;
}

.registerLeftSec__Img>img {
	width: 75%;
}

.registerRightSec__ {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 10px #00000014;
	width: 85%;
	height: calc(100vh - 15vh);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}

.registerRightSec__Main {
	width: 85%;
	height: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	overflow: hidden;
	padding: 35px 0;
}

.overflow {
	overflow: hidden;
	overflow-y: auto;
	width: 100%;
	height: 85%;
	display: flex;
	flex-flow: row wrap;
	/* align-content: center; */
	/* transition: 5s all; */
}

.overflow::-webkit-scrollbar {
	display: none;
}

.formText__ {
	font-size: 12px;
	font-weight: 600;
	display: block;
	text-align: left;
	margin-top: 25px;
	margin-bottom: 45px;
}

.registerRightSec__Logo {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 25px;
}

.registerRightSec__Logo>img {
	height: 35px;
	margin-top: 25px;
}

#otpConfirmation {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-content: center;
}

#signUpForm {
	height: 100%;
	padding: 15px 0 !important;
}

.registerRightSec__Main input,
.registerRightSec__Main select {
	background-color: transparent;
	color: #ccc;
	font-family: lato-r;
	border: 1px solid #dcdfe1;
	height: unset;
	padding: 12px 15px;
	border-radius: 8px !important;
	box-shadow: none;
}

.registerRightSec__Main input::placeholder {
	color: #ccc;
	font-size: 15px;
	line-height: 18px;
	font-family: lato-r;
}

.registerRightSec__Main .iti.iti--allow-dropdown .iti--allow-dropdown.iti--separate-dial-code>.iti__flag-container>.iti__selected-flag {
	background: transparent;
	border-right: 1px solid #dcdfe1;
	border-radius: 0;
}

.registerRightSec__Main .login-btn {
	height: unset;
	padding: 12px 15px;
}

.registerRightSec__Main .error {
	min-height: unset;
	margin-bottom: 0;
}

.registerRightSec__Main .numberChecker {
	margin-bottom: 0px !important;
	width: 100%;
}

.FormTextContent {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}

.formEmailFieldInput {
	margin-top: 35px;
}

/* .FormTextContent */

.verticalLine__ {
	position: relative;
}

.verticalLine__::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(0%, -50%);
	width: 40%;
	height: 1px;
	background-color: #dcdfe1;
}

.verticalLine__::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0%;
	transform: translate(0%, -50%);
	width: 40%;
	height: 1px;
	background-color: #dcdfe1;
}

.threeSelectBox {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.threeSelectBox>div {
	width: calc(100% / 3);
}

.moreTextShow {
	display: none;
}

.showTextBtn {
	padding: 0px !important;
	border: 1px solid transparent;
	background-color: transparent;
	border-radius: 18px;
	outline: none !important;
	font-weight: bolder;
	color: #00c9fd;
}

/* register end */
.loader-container {
	display: none;
	/* Initially hidden */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.smallImage {
	margin-right: 5px;
	width: 30px;
	height: auto;
}

.card_main {
	position: relative;
}

.card_item {
	position: absolute;
	top: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-100%);
	width: 100%;
	height: 50%;
}

.card_item_content .card_number {
	width: 100%;
	text-align: start;
	letter-spacing: 3px;
	margin-bottom: 0;
	font-size: 16px;
}

.card_item_content .card_view_number {
	position: absolute;
	top: 18%;
	left: 85%;
	font-size: 24px;
	margin-bottom: 0;
}

.card_item_content .card_name {
	width: 50%;
	text-align: start;
	margin: 10px 0;
	font-size: 16px;
}

.card_item_content .card_expiry {
	width: 50%;
	text-align: end;
	margin: 10px 0;
	font-size: 16px;
}

.card_item_content .card_cvv {
	width: 50%;
	text-align: start;
	margin-bottom: 0;
	font-size: 16px;
}

.card_item_content .type {
	width: 50%;
	text-align: start;
	margin-bottom: 0;
	font-size: 16px;
}



.modal-body {
	padding: 20px;
}

.transaction-checkbox {
	margin-bottom: 15px;
}

.transaction-checkbox input[type="checkbox"] {
	display: none;
}

.transaction-checkbox label {
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	font-size: 16px;
}

.transaction-checkbox label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-radius: 3px;
	background-color: #fff;
}

.transaction-checkbox input[type="checkbox"]:checked+label:before {
	background-color: #03c9fd;
	border-color: #03c9fd;
}

.transaction-fields {
	margin-top: 10px;
	display: none;
}

.transaction-checkbox input[type="checkbox"]:checked~.transaction-fields {
	display: block;
}

.transaction-fields input[type="text"] {
	/* width: calc(50% - 10px); */
	margin-right: 10px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}

.transaction-fields input[type="number"] {
	/* width: calc(50% - 10px); */
	margin-right: 10px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}

.transaction-email label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	padding-left: 25px;
}

.transaction-email input[type="email"] {
	width: 80%;
	padding: 8px;
	margin-left: 25px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-bottom: 15px;
	font-size: 16px;
}

.hidden {
	display: none;
}

.insufficient-amount {
	color: red;
	font-size: x-small;
}

.card-input-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 10px;
}

.card-input-container label {
	flex: 1;
}

.card-input-container input {
	flex: 2;
	padding: 5px;
	border: 1px solid #ccc;
}

.card-input-container input[type="text"] {
	background-color: #f9f9f9;
}

.card-input-container input[type="number"] {
	width: 80%;
}

.modal-body {
	padding: 20px;
}


.card_item_content {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	padding: 0 7% 0 10%;
}

.card_view {
	width: 390px;
	height: 230px;
	margin: 20px auto;
}

.business_logo {
	width: 100%;
	height: 100%;
}

.cards_section {
	overflow: auto;
}

@media (max-width:576px) {
	.card_view {
		width: 100% !important;
		height: 225px;
	}

	.card_item_content .card_number {
		font-size: 14px;
	}

	.card_item_content .card_name {
		font-size: 14px;
		margin: 10px 0;
	}

	.card_item_content .card_expiry {
		font-size: 14px;
		margin: 10px 0;
	}

	.card_item_content .card_cvv {
		width: 50%;
		text-align: start;
		margin-bottom: 0;
		font-size: 14px;
	}

	.card_item_content .type{
		font-size: 14px;
	}
}

@media (max-width:430px) {
	.card_view {
		width: 100% !important;
		height: 175px;
	}

	.card_item_content .card_number {
		font-size: 10px;
	}

	.card_item_content .card_name {
		font-size: 10px;
		margin: 10px 0;
	}

	.card_item_content .card_expiry {
		font-size: 10px;
		margin: 10px 0;
	}

	.card_item_content .card_cvv {
		width: 50%;
		text-align: start;
		font-size: 10px;
		margin-bottom: 0;
	}

	.card_item_content .type {
		font-size: 10px;
	}
}