@charset 'utf-8';

@import url('bootstrap.min.css');
@import url('slick.min.css');
@import url('fancybox.min.css');
@import url('datatables.min.css');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

:root {
	--font-awesome: 'Font Awesome 5 Free';
	--first-color: #a2a0b9;
	--second-color: #272637;
	--third-color: #1e1d2a;
	--fourth-color: #de163a;
	--fifth-color: #ce0373;
	--sixth-color: #fd71af;
}

html,
body {
	background-color: #1e1d2a;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
}

* {
	box-sizing: border-box;
	outline: none !important;
	resize: none !important;
}

a,
a:hover,
a:link,
a:active,
a:visited {
	text-decoration: none;
}

.container {
	position: relative;
}

/* Header */



/* UI Kit */

.ui-kit .container {
	padding-top: 50px;
	padding-bottom: 50px;
}

.ui-kit .ui-kit--title {
	border-bottom: 1px solid rgba(255,255,255,.2);
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 30px;
	opacity: .5;
	padding-bottom: 30px;
	text-transform: uppercase;
}

.ui-kit .ui-kit--colors .colors--list {
	align-items: flex-start;
	display: flex;
	text-align: center;
}

.ui-kit .ui-kit--colors .colors--list .list--item {
	flex-shrink: 0;
	width: 16.6666667%;
}

.ui-kit .ui-kit--colors .colors--list .list--item:before {
	background-color: var(--color);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 35px;
	content: '';
	display: block;
	height: 80px;
	margin: 0 auto 15px;
	width: 80px;
}

.ui-kit .ui-kit--colors .colors--list .list--item small {
	display: block;
	opacity: .5;
	margin-top: 3px;
}

/* UI Kit */

.form-group {
	padding-top: 10px;
	position: relative;
}

.label-absolute .form-label {
	background-color: var(--third-color);
	font-size: 12px;
	left: 10px;
	margin-bottom: 0;
	padding-left: 5px;
	padding-right: 5px;
	position: absolute;
	top: 0;
}

.form-control,
.form-select {
	background-color: transparent;
	color: #fff;
	height: 45px;
	padding: 0 15px;
}

.form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	padding-right: 35px;
}

.form-control:not(:disabled):hover,
.form-control:not(:disabled):focus,
.form-select:not(:disabled):hover,
.form-select:not(:disabled):focus {
	background-color: transparent;
	border-color: #fff;
	box-shadow: inherit;
	color: #fff;
}

.form-control:disabled,
.form-select:disabled {
	background-color: rgba(0,0,0,.25);
	color: #7f7f7f;
}

.form-select option {
	color: var(--third-color);
}

.form-control::-webkit-input-placeholder {
	color: #999;
}

.form-control:-ms-input-placeholder {
	color: #999;
}

.form-control::placeholder {
	color: #999;
}

.form-text {
	color: #ccc;
	font-weight: 200;
	margin-top: 5px;
}

.form-check-input:checked {
	background-color: var(--fifth-color);
	border-color: var(--fifth-color);
	box-shadow: inherit;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

hr {
	background-color: transparent;
	height: 0;
	margin: 75px 0 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: 500;
}

h1,
.h1 {
	font-size: 28px;
	line-height: 1.1;
}

h2,
.h2 {
	font-size: 23px;
	line-height: 1.2;
}

h3,
.h3 {
	font-size: 18px;
	line-height: 1.3;
}

.btn {
	align-items: center;
	background-color: transparent;
	border: 0;
	border-radius: 45px;
	color: #fff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 500;
	height: 45px;
	justify-content: center;
	line-height: 1;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	transition: background-color .3s, box-shadow .3s;
}

.btn-square {
	padding-left: 0;
	padding-right: 0;
	width: 45px;
}

.btn-primary {
	background-image: linear-gradient(135deg, #00dba2, #00b989 65%);
}

.btn-secondary {
	background-color: rgba(255,255,255,.05);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.btn i {
	font-size: 13px;
}

.btn-secondary i {
	color: var(--sixth-color);
}

.btn i:last-of-type {
	margin-left: 8px;
	margin-right: 0;
}

.btn i:first-of-type {
	margin-left: 0;
	margin-right: 8px;
}

.btn.btn-square i {
	margin-left: 0;
	margin-right: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
	box-shadow: 0 0 14px 0 #1fb899;
	color: #fff;
	transition: box-shadow .3s;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active:focus {
	background-color: rgba(255,255,255,.1);
	box-shadow: inherit;
	transition: background-color .3s;
}

.btn-group {
	border-radius: 5px;
	box-shadow: inset 0 0 0 1px var(--sixth-color);
}

.btn-group input {
	opacity: 0;
	position: absolute;
	visibility: hidden;
}

.btn-group .btn {
	border-left: 1px solid var(--sixth-color);
	border-radius: 0;
	color: var(--sixth-color);
	font-size: 13px;
	font-weight: 500;
	height: 36px;
	padding-left: 20px;
	padding-right: 20px;
}

.btn-group .btn:first-child {
	border-left: 0;
}

.btn-group .btn:first-of-type {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.btn-group .btn:last-of-type {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.btn-group .btn:hover,
.btn-group .btn:focus,
.btn-group .btn:active:focus {
	background-color: #fd71af20;
	box-shadow: inherit;
}

.btn-group .btn.active,
.btn-group input:checked + .btn {
	background-color: var(--sixth-color);
	color: #fff;
}

.table {
	color: #fff;
}

.table thead {
	font-size: 14px;
	font-weight: 500;
}

.table th,
.table td {
	border-bottom-color: rgba(255,255,255,.1);
	padding: 15px;
}

.table > :not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.1);
}

.table-striped td {
	color: #fff;
	transition: background-color .3s, color .3s;
}

.table-striped tr:nth-of-type(odd) td {
	background-color: rgba(255,255,255,.05);
	color: #fff;
}

.table th,
.table td:nth-child(even),
.table-striped tr:nth-of-type(odd) td:nth-child(even) {
	color: var(--first-color);
}

.table-hover tr:nth-child(odd):hover td,
.table-hover tr:nth-child(even):hover td {
	background-color: rgba(255,255,255,.1);
	color: #fff;
	transition: background-color .3s, color .3s;
}

.table th[align="center"],
.table td[align="center"] {
	text-align: center;
}

.table td.actions a {
	color: var(--first-color);
	display: inline-flex;
	font-size: 15px;
	line-height: 1;
	padding: 0 9px;
	transition: color .3s;
}

.table td.actions a:hover {
	color: #fff;
	transition: color .3s;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
	color: #fff;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
	background-color: rgba(255,255,255,.05);
	border-color: rgba(255,255,255,.1);
	color: #fff;
	margin-right: 10px;
}

.dataTables_wrapper .dataTables_length select option {
	color: #333;
}

.dataTables_wrapper .dataTables_filter input {
	margin-left: 10px;
	margin-right: 0;
}

.dataTables_length,
.dataTables_filter {
	margin-bottom: 10px;
}

table.dataTable {
	margin: 10px 0;
}

table.dataTable tr {
	background-color: transparent !important;
}

table.dataTable th,
table.dataTable td {
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	padding: 15px !important;
}

table.dataTable th {
	font-size: 14px !important;
	font-weight: 700 !important;
}

table.dataTable thead th,
table.dataTable thead td {
	border-bottom-color: rgba(255,255,255,.1);
}

table.dataTable th.sorting:after {
	color: var(--sixth-color);
	content: '\f0dc';
	font-family: var(--font-awesome);
	font-size: 12px;
	font-weight: 900;
	margin-left: 5px;
}

table.dataTable th.sorting_asc:after {
	content: '\f0de';
}

table.dataTable th.sorting_desc:after {
	content: '\f0dd';
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
	border: 0 !important;
	color: var(--first-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: rgba(255,255,255,.25) !important;
	border: 0 !important;
	border-radius: 5px;
	color: #fff !important;
}

.dot {
	background-color: #999;
	border-radius: 9px;
	display: inline-flex;
	height: 9px;
	margin-right: 10px;
	width: 9px;
}

.dot.active {
	background-color: #00ffb7;
}

.dot.canceled {
	background-color: #f46e6e;
}

.dot.waiting {
	background-color: #ffc800;
}

.tabs ul.nav {
	box-shadow: inset 0 -1px 0 0 rgba(255,255,255,.1);
}

.tabs ul.nav li a {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	padding: 18px 30px;
	transition: box-shadow .3s, color .3s;
}

.tabs ul.nav li a:hover,
.tabs ul.nav li a.active {
	color: var(--sixth-color);
	transition: color .3s;
}

.tabs ul.nav li a.active {
	box-shadow: inset 0 -2px 0 0 var(--sixth-color);
	transition: box-shadow .3s;
}

.alert {
	font-size: 13px;
	padding: 15px 50px 15px 20px;
}

.alert-success {
	color: #00ffb7;
	background-color: #00ffb71a;
	border-color: #00ffb74d;
}

.alert-danger {
	color: #f46e6e;
	background-color: #f46e6e1a;
	border-color: #f46e6e4d;
}

.alert-warning {
	color: #ffc800;
	background-color: #ffc8001a;
	border-color: #ffc8004d;
}

.alert .btn-close {
	background: transparent;
	color: currentColor;
	cursor: pointer;
	font-size: 12px;
	height: inherit;
	line-height: 1;
	opacity: 1;
	padding: 10px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: inherit;
}

/* Footer */



/* Media Queries */

/* Desktops */

@media (max-width: 1199px) {

	

}

/* Tablets */

@media (max-width: 991px) {

	

}

/* Smartphones - Landscape */

@media (max-width: 767px) {

	

}

/* Smartphones - Portrait */

@media (max-width: 567px) {

	

}