body {
	font-size: 0.9rem;
	background-color: var(--light-primary-color);
	color: var(--dark-primary-color);
}

::-webkit-scrollbar {
	background: #FFFFFF;
	width: 12px;
	border-radius: 0 1rem 1rem 0;
}

body::-webkit-scrollbar {
	border-radius: 0;
}

::-webkit-scrollbar-thumb {
	background: var(--dark-primary-color);
	border: 3px solid #FFFFFF;
	border-radius: 10rem;
}

::-webkit-scrollbar-track {
	margin: 12px 0;
}

@media(max-width:990px) {
	.col{
		flex: auto;
	}
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(-45deg, red, green, blue);
	background-size: 400% 400%;
	animation: gradient 3s ease infinite;
	z-index: 9999999;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.container-fluid {
	padding: 0 24px;
}

@media (max-width:990px) {
	.container-fluid {
		padding: 0 12px;
	}
}

* {
	outline: none;
}

a {
	text-decoration: none !important;
	color: var(--dark-primary-color);
}

a:hover,
a:focus {
	color: var(--primary-color);
}

.form-control, .form-select{
	background-color: var(--light-primary-color);
	padding: 0.75rem 1.25rem;
	border: 1px solid transparent;
	border-radius: 10rem;
	transition: 0.3s;
}

.form-color {
	min-height: 49px;
}

@media(max-width:990px) {
	.form-control, .form-select {
		padding: 0.65rem 0.75rem;
	}

	.form-color {
		min-height: 45px;
	}
}

.form-control:focus, .form-select:focus {
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

.form-control:disabled, .form-select:disabled {
	background-color: #DDDDDD;
}

textarea.form-control {
	height: auto;
	border-radius: 1rem;
	filter: blur(0)!important;
}

.form-check-input {
	margin-top: 0;
}

.btn {
	color: #FFFFFF!important;
	padding: 0.65rem 1.25rem;
	box-shadow: 0 0 0 2px transparent;
	border-radius: 10rem;
}

@media(max-width:990px) {
	.btn {
		padding: 0.45rem 0.75rem;
	}
}

.btn-link,
.btn-link:hover,
.btn-link:focus {
	color: #FFFFFF !important;
	box-shadow: none !important;
}

.btn-default {
	color: var(--dark-primary-color)!important;
	background-color: var(--light-primary-color);
	padding: 0.75rem 1.25rem;
	border-color: transparent;
	text-align: left;
	border-radius: 10rem;
	transition: 0.3s;
}

@media(max-width:990px) {
	.btn-default {
		padding: 0.45rem 0.75rem;
	}
}

.btn-default:focus, .btn-default:focus {
	background-color: var(--light-primary-color);
	border: 1px solid var(--light-primary-color);
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

.btn-primary {
	color: #FFFFFF !important;
	background-color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	color: #FFFFFF!important;
	box-shadow: 0 0 0 0.25rem var(--primary-color)42;
}

.btn-outline-primary {
	color: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
	background-color: var(--primary-color) !important;
	color: #FFFFFF !important;
	box-shadow: 0 0 0 2px var(--light-primary-color) !important;
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
	background-color: #DDDDDD;
}

.alert {
	padding: 12px 24px;
	border-radius: 1rem;
}

.alert i {
	margin-right: 12px;
}

@media (max-width:990px) {
	.alert i {
		margin-right: 6px;
	}
}

.table-responsive {
	position: relative;
	overflow-y: hidden;
	min-height: 155px;
}

.table {
	margin-bottom: 0;
	overflow: hidden;
}

.table th,
.table td {
	line-height: 24px;
	white-space: nowrap;
	vertical-align: middle;
	padding: 12px;
	transition: 0.3s;
}

.table tr:hover td {
	background-color: var(--light-primary-color);
}

@media(max-width:990px) {
	.table th,
	.table td {
		padding: 6px;
	}
}

.table th.wrap,
.table td.wrap {
	white-space: normal;
	word-break: break-all;
}

.table th {
	border-top: none;
	border-bottom: 2px solid #DDDDDD !important;
	font-weight: 600;
}

.table td {
	border-top: 1px solid #DDDDDD !important;
}

.table tbody tr:last-child td {
	border-bottom: none;
	padding-bottom: 0;
}

.table input[type=checkbox] {
	float: left;
	margin-top: 7px;
}

.table .btn-actions {
	display: inline-block;
	padding: 6px 12px;
	color: var(--dark-primary-color) !important;
	border-radius: 0;
	font-size: 1rem;
}

.table .dropdown-menu {
	max-height: 200px;
	min-width: auto;
	overflow: auto;
	padding: 12px;
}

.table .btn {
	width: 30px;
	height: 30px;
	padding: 0;
	text-align: center;
	line-height: 30px;
	box-shadow: none;
	font-size: 0.75rem;
	border-radius: 10rem;
	margin-left: 1px;
	box-shadow: none !important;
}

.table .btn i {
	color: #FFFFFF;
}

.table a.btn i {
	line-height: 30px;
}

.dropdown-menu {
	min-width: 205px;
	border: 1px solid var(--light-primary-color);
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	padding: 24px;
	overflow: auto;
	border-radius: 1rem;
	max-height: 400px;
}

.form-group.row .dropdown-menu{
	width: 100%;
}

.form-group.row .dropdown-menu table {
	width: 100%;
}

.dropdown-menu-end {
	transform: none!important;
    top: 35px !important;
}

.dropdown-item {
	border-bottom: 1px solid var(--light-primary-color)!important;
	margin-bottom: 3px;
	padding: 12px 0!important;
	cursor: pointer;
	line-height: 1;
}

.form-group.row .dropdown-menu table:first-child .dropdown-item {
	cursor: move;
}

.dropdown-item label {
	display: block;
	font-weight: 400;
	line-height: 1;
}

.dropdown-divider {
	border-color: var(--light-primary-color);
}

.dropdown-item:hover, .dropdown-item:focus {
	background-color: transparent;
	color: var(--primary-color);
}

.dropdown-menu.profile {
	text-align: center;
	padding: 24px;
}

.dropdown-menu.profile h5{
	margin: 12px 0 0;
}

.dropdown-toggle::after {
	display: none !important;
}

.pagination {
	justify-content: flex-end;
	margin-bottom: 24px;
}

@media(max-width:990px) {
	.pagination {
		margin-bottom: 12px;
	}
}

.page-link {
	margin: 0 0 0 8px !important;
	padding: 0;
	width: 46px;
	height: 46px;
	text-align: center;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	border: none;
	line-height: 46px;
	color: var(--dark-primary-color);
	border-radius: 10rem!important;
}

.page-item.active .page-link, .page-link:hover, .page-link:focus {
	background-color: var(--primary-color);
	color: #FFFFFF;
}

select.form-control[multiple] {
	overflow: auto;
}

.form-group {
	margin-bottom: 24px;
}

@media(max-width:990px) {
	.form-group {
		margin-bottom: 12px;
	}
}

.modal-content {
	border-radius: 1rem;
}

.modal .modal-body {
	text-align: center;
	padding: 48px 24px;
}

.modal .modal-body i {
	position: relative;
	background-color: var(--primary-color);
	font-size: 1.5rem;
	color: #FFFFFF;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	border-radius: 10rem;
	margin-bottom: 24px;
}

.modal .modal-body h4 {
	font-size: 1.25rem;
	margin-bottom: 0;
}

.modal .modal-body p {
	font-size: 1rem;
	color: #DDDDDD;
	margin-bottom: 24px;
}

.modal .modal-body .btn {
	margin: 0 2.5px;
	padding: 8px 32px;
}

.badge {
	border-radius: 10rem;
}

.account-page {
	position: relative;
    height: 100vh;
	padding-top: 96px;
}

.account-page .panel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 25%;
	padding: 48px;
	max-height: calc(100vh - 48px);
    overflow: auto;
}

@media (max-width:1800px) {
	.account-page .panel {
		width: 33%;
		max-height: calc(100vh - 24px);
    	overflow: auto;
	}
}

@media (max-width:1400px) {
	.account-page .panel {
		width: 40%;
	}
}

@media (max-width:1100px) {
	.account-page .panel {
		width: 50%;
	}
}

@media (max-width:990px) {
	.account-page .panel {
		width: 60%;
		padding: 12px;
	}
}

@media (max-width:600px) {
	.account-page .panel {
		width: 90%;
	}
}

@media (max-width:450px) {
	.account-page .panel {
		width: 100%;
	}
}

.account-page .panel img {
	height: 60px;
	margin-bottom: 24px;
}

@media (min-width:990px) {
	.account-page .panel .panel-heading {
		margin-bottom: 48px;
	}
}

.account-page .panel form {
	margin-bottom: 0;
}

.account-page .panel label {
	line-height: 1;
	margin: 0 0 6px;
}

.account-page .panel .form-control {
	padding-left: 48px;
}

@media (min-width:990px) {
	.account-page .panel .form-control {
		font-size: 1rem;
		padding: 1rem 1.25rem;
		padding-left: 48px;
	}
}

.account-page .panel .form-group {
	position: relative;
}

.account-page .panel .form-group>.fa {
	position: absolute;
	top: 25px;
	left: 20px;
	color: var(--dark-primary-color);
	opacity: 0.5;
}

@media (max-width:990px) {
	.account-page .panel .form-group>.fa {
		top: 20px;
		font-size: 0.75rem;
	}
}

.account-page .panel .form-group>.fa.fa-eye {
	left: auto;
	right: 20px;
	cursor: pointer;
	transition: 0.3s;
}

.account-page .panel .form-group>.fa.fa-eye:hover {
	color: #DDDDDD;
}

@media (min-width:990px) {
	.account-page .panel .btn {
		font-size: 1rem;
		padding: 1rem 1.25rem;
	}
}

header {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 285px;
	text-align: center;
	padding: 24px;
	background-color: #FFFFFF;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	z-index: 99999;
}

@media(max-width:990px) {
	header {
		bottom: auto;
		top: 0;
		text-align: left;
		width: 100%;
		z-index: 999;
		padding: 12px;
	}

	header.collapsed {
		padding: 12px 12px 12px 285px;
	}
}

header .main-menu-toggler {
	display: none;
	float: right;
	width: 48px;
	height: 48px;
	text-align: center;
	color: var(--dark-primary-color);
	background-color: transparent;
	border: none;
	padding: 0;
	font-size: 1.25rem;
	transition: 0.3s;
}

header .main-menu-toggler:hover,
header .main-menu-toggler:focus {
	color: var(--primary-color);
}

@media(max-width:990px) {
	header .main-menu-toggler {
		display: inline-block;
	}
}

header ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media(max-width:990px) {
	header ul {
		white-space: nowrap;
	}

	header ul.collapsed {
		display: none;
	}
}

header ul>li {
	display: inline-block;
}

header ul>li>a {
	display: block;
	width: 48px;
	height: 48px;
	text-align: center;
	margin: 0 3px;
	color: var(--primary-color);
	font-size: 1rem;
	background-color: var(--light-primary-color);
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	border-radius: 10rem;
	transition: 0.3s;
}

@media (max-width:990px) {
	header ul>li>a {
		margin: 0 3px;
	}
}

header ul>li>a:hover,
header ul>li>a:focus {
	background-color: var(--primary-color);
	color: #FFFFFF;
}

header ul>li:last-child>a {
	border: none;
}

header ul>li>a>i {
	line-height: 48px!important;
}

header ul .dropdown-menu.profile {
	text-align: center;
	padding: 12px;
}

header ul .dropdown-menu.profile>img {
	width: 25%;
	display: block;
	margin: 0 auto 12px;
	border-radius: 10rem;
}

.main-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 285px;
	height: calc(100% - 96px);
	z-index: 9999;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: #FFFFFF;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	transition: 0.6s;
}

@media(max-width:990px) {
	.main-menu {
		height: 100%;
		left: -285px;
	}
}

@media(max-width:990px) {
	.main-menu.collapsed {
		left: 0;
		box-shadow: #DDDDDD 0px 1px 60px 10px;
	}
}

.main-menu .logo {
	position: relative;
}

.main-menu .logo img {
	height: 60px;
	display: block;
	margin: 24px auto 48px;	
}

.main-menu .main-menu-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0 24px;
}

.main-menu .main-menu-list>li>a {
	position: relative;
	display: block;
	color: var(--dark-primary-color);
	font-weight: bold;
	white-space: nowrap;
	padding: 9px;
	margin-bottom: 6px;
	transition: 0.3s;
	border-radius: 10rem;
}

.main-menu .main-menu-list>li>a::before {
	content: '';
}

.main-menu .main-menu-list>li:hover>a,
.main-menu .main-menu-list>li.active>a {
	background-color: var(--primary-color);
	color: #FFFFFF;
	box-shadow: #DDDDDD 0px 1px 2px 0px;

}

.main-menu .main-menu-list>li>a i.icon-left {
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	margin-right: 9px;
	color: var(--dark-primary-color);
	font-size: 0.95rem;
}

.main-menu .main-menu-list>li:hover>a i.icon-left,
.main-menu .main-menu-list>li.active>a i.icon-left {
	color: #FFFFFF;
	box-shadow: none;
}

.main-menu .main-menu-list>li>a i.fa-angle-right, .main-menu .main-menu-list>li>a i.fa-angle-down {
	float: right;
	margin-top: 10px;
	margin-right: 6px;
}

.main-menu .panel-collapse {
	margin: 0 -10px;
}

.main-menu .sub-menu {
	list-style: none;
	margin: 0 0 6px;
	padding: 0 24px;
}

.sub-menu a {
	display: block;
	position: relative;
	padding: 12px 0 12px 24px;
	margin-bottom: 3px;
	color: var(--dark-primary-color);
	font-weight: 600;
	border-radius: 10rem;
	transition: 0.3s;
}

.sub-menu a:hover,
.sub-menu li.active a {
	background-color: var(--light-primary-color);
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

.sub-menu a:before {
	content: '';
	position: absolute;
	margin-left: -12px;
	top: 20px;
	width: 6px;
	height: 6px;
	border: 2px solid var(--light-primary-color);
	border-radius: 10rem;
}

.sub-menu a:hover:before,
.sub-menu li.active a:before {
	border-color: var(--primary-color);
}

.site-body {
	position: relative;
	min-height: calc(100vh - 45.75px);
}

@media(max-width:990px) {
	.site-body {
		min-height: calc(100vh - 33.75px);
	}
}

@media(min-width:990px) {
	.site-body {
		margin-left: 285px;
		width: calc(100% - 285px);
	}
}

.page {
	position: relative;
}

.page-header {
	position: relative;
	background-color: #FFFFFF;
    padding: 24px 24px 0;
    margin-bottom: 24px;
    border-radius: 0 0 1rem 1rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

@media(max-width:990px) {
	.page-header {
		padding: 84px 12px 0;
		margin-bottom: 12px;
	}
}

.page-header .breadcrumb {
	padding: 0;
	margin: 0 0 24px;
	background-color: transparent;
}

@media(max-width:990px) {
	.page-header .breadcrumb {
		margin: 0 0 12px;
	}
}

.page-header .breadcrumb .breadcrumb-item {
	position: relative;
	color: var(--dark-primary-color);
	opacity: 0.5;
	line-height: 49px;
	font-weight: bold;
}

@media(max-width:990px) {
	.page-header .breadcrumb .breadcrumb-item {
		line-height: 1;
	}
}

.page-header .breadcrumb .breadcrumb-item a {
	color: var(--dark-primary-color);
	opacity: 0.5;
}

.page-header .breadcrumb .breadcrumb-item:first-child {
	font-size: 1.45rem;
	font-weight: bold;
	margin-right: 12px;
	color: var(--dark-primary-color);
	opacity: 1;
	margin-top: -2px;
}

@media(max-width:990px) {
	.page-header .breadcrumb .breadcrumb-item:first-child {
		margin-bottom: 12px;
		font-size: 1.25rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media(max-width:990px) {
	.page-header .breadcrumb .breadcrumb-item+.breadcrumb-item {
		display: none;
	}
}

.page-header .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "\f192";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: inline-block;
	color: var(--dark-primary-color);
	opacity: 0.5;
	font-size: 0.45rem;
	line-height: 49px;
}

@media(max-width:990px) {
	.page-header .breadcrumb {
		margin-bottom: 12px;
	}
}

.page-header .actions-panel {
	margin-bottom: 24px;
}

.page-header .actions-panel form {
	position: relative;
}

.page-header .actions-panel form .fa-search {
	position: absolute;
	top: 3px;
	right: 20px;
	color: var(--dark-primary-color);
	opacity: 0.5;
}

@media (max-width:990px) {
	.page-header .actions-panel form .fa-search {
		position: relative;
		float: right;
		margin-top: -34px;
		margin-right: -3px;
		font-size: 0.75rem;
	}
}

@media(min-width:990px) {
	.page-header .actions-panel form .form-control {
		min-width: 285px;
		width: auto;
    	display: inline-block;
	}
}

@media(max-width:990px) {
	.page-header .actions-panel form .form-control {
		margin-bottom: 3px;
	}
}

.page-header .actions-panel .multiple-items-actions {
	display: none;
}

.page-header .actions-panel .btn {
	margin-right: 2px;
}

@media(max-width:990px) {
	.page-header .actions-panel .btn{
		margin: 0 0 6px 0;
		width: 49%;
	}
}

.page-header .actions-panel .btn i{
	margin-right: 12px;
}

@media (max-width:990px) {
	.page-header .actions-panel .btn i {
		margin-right: 6px;
	}
}

.page-header .actions-panel .btn i.fa-angle-down {
	margin-right: 0;
}

.page-body {
	position: relative;
}

.count-statistics-panel {
	position: relative;
	background: linear-gradient(135deg, var(--primary-color)0A, #FFFFFF);
	background-color: #FFFFFF;
	padding: 48px 24px;
	margin-bottom: 24px;
	border-radius: 1rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	overflow: hidden;
}

@media(max-width:990px) {
	.count-statistics-panel {
		padding: 12px 24px;
		margin-bottom: 12px;
	}
}

.count-statistics-panel::before {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/count-stats-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: 0.1;
}

.count-statistics-panel h4 {
	position: relative;
	font-size: 1.25rem;
	margin-bottom: 24px;
	font-weight: bold;
}

.count-statistics-panel h6 {
	font-size: 1.45rem;
	margin: 0;
	font-weight: bold;
}

.count-statistics-panel i {
	position: relative;
	background-color: var(--primary-color);
	font-size: 0.95rem;
	float: right;
	margin-top: -48px;
	color: #FFFFFF;
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	border-radius: 10rem;
	z-index: 999;
}

.statistics-table-panel {
	background-color: #FFFFFF;
	padding: 24px;
	margin-bottom: 24px;
	border-radius: 1rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	height: 550px;
	overflow: hidden;
}

@media(max-width:990px) {
	.statistics-table-panel {
		padding: 12px;
		margin-bottom: 12px;
		height: auto;
	}
}

.statistics-table-panel h4 {
	font-size: 1.15rem;
	margin-bottom: 24px;
	font-weight: bold;
}

.table-panel {
	background-color: #FFFFFF;
	padding: 24px;
	margin-bottom: 24px;
	border-radius: 1rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

@media(max-width:990px) {
	.table-panel {
		padding: 12px;
		margin-bottom: 12px;
	}
}

.panel {
	position: relative;
	background-color: #FFFFFF;
	padding: 24px;
	margin-bottom: 24px;
	border-radius: 1rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

@media(max-width:990px) {
	.panel {
		padding: 12px;
		margin-bottom: 12px;
	}
}

.panel .panel-heading {
	margin-bottom: 24px;
}

@media(max-width:990px) {
	.panel .panel-heading {
		margin-bottom: 12px;
	}
}

.panel .panel-heading h4 {
	font-size: 1.75rem;
	font-weight: bold;
	margin-bottom: 0;
}

@media(max-width:990px) {
	.panel .panel-heading h4 {
		font-size: 1.25rem;
	}
}

.panel .panel-heading p{
	margin-bottom: 0;
}

.panel .panel-heading .float-end {
	margin-top: -48px;
}

.panel .panel-heading .float-end.btn i{
	margin-right: 12px;
}

@media(max-width:990px) {
	.panel .panel-heading .float-end.btn i{
		margin-right: 6px;
	}
}

.panel .panel-heading .float-start {
	margin: 0 12px 0 0;
}

@media(max-width:990px) {
	.panel .panel-heading .float-start.btn {
		margin: 6px 6px 0 0;
	}
}

.panel .panel-heading .float-start.btn i {
	margin-right: 12px;
}

@media(max-width:990px) {
	.panel .panel-heading .float-start.btn i {
		margin-right: 6px;
	}
}

@media(min-width:990px) {
	.panel .table th, .panel .table td {
		white-space: normal;
	}
}

@media(min-width:990px) {
	.panel .table th:first-child, .panel .table th:first-child {
		width: 30%;
	}
}

@media(max-width:990px) {
	form.panel > .btn {
		width: 100%;
		margin-top: 5px;
	}
}

.no-results-found {
	padding: 48px 24px;
	text-align: center;
	color: #DDDDDD;
	font-size: 1.2rem;
}

p.no-results-found {
	padding: 12px 0;
	font-size: 0.75rem;
}

.no-results-found i{
	display: block;
	font-size: 3.5rem;
	color: #DDDDDD;
	margin-bottom: 24px;
}

label {
	font-weight: 600;
	line-height: 48px;
}

hr {
	border: none !important;
	background-color: #DDDDDD;
}

.form-group.mb-0.row label {
	line-height: 1.6;
    margin: 6px 0;
}

.form-group.mb-0.row p.form-control {
	background-color: transparent;
    border: none;
    padding: 6px 0;
}

.form-group.mb-0.row:last-child p.form-control {
	border-bottom: 0;
}

.uploaded-image {
	display: block;
	background-color: var(--light-primary-color);
	padding: 24px;
	margin-bottom: 24px;
	border-radius: 1rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

.uploaded-image img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.uploaded-image.uploaded-logo img{
	max-width: 300px;
	background-color: #FFFFFF;
	padding: 12px;
	border-radius: 1rem;
}

.uploaded-image.uploaded-favicon img {
	max-width: 100px;
	background-color: #FFFFFF;
	padding: 12px;
	border-radius: 1rem;
}

.uploaded-image .btn {
	margin-bottom: 12px;
	width: 100%;
}

.uploaded-image .btn i {
	margin-right: 12px;
}

@media (max-width:990px) {
	.uploaded-image .btn i {
		margin-right: 6px;
	}
}

.resizer {
	position: relative;
}

.resizer.resizer-zoomed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	transition: 0.5s;
	overflow: auto;
	background-color: #FFFFFF;
	padding: 24px 24px 0;
}

@media(max-width:990px) {
	.resizer.resizer-zoomed {
		padding: 12px 12px 0;
	}
}

.resizer .btn {
	position: absolute;
	right: 12px;
	top: 12;
}

.resizer.resizer-zoomed img {
	padding: 0;
	border-radius: 0;
}

.location-qr-code {
	position: relative;
	background-color: var(--light-primary-color);
	padding: 24px;
	border-radius: 1rem;
	margin-bottom: 24px;
}

@media(max-width:990px) {
	.location-qr-code {
		padding: 12px;
		margin-bottom: 12px;
	}
}

.location-qr-code .btn {
	position: absolute;
	right: 12px;
	top: 12;
}

.location-qr-code img{
	max-width: 25%;
	display: block;
	margin: 0 auto;
}

.location-badge {
	position: relative;
	background-color: var(--primary-color);
	color: #FFFFFF;
	padding: 48px 24px;
	text-align: center;
	border-radius: 1rem;
}

@media(max-width:990px) {
	.location-badge {
		padding: 12px;
	}
}

.location-badge .btn {
	background-color: #FFFFFF!important;
	border-color: #FFFFFF!important;
	color: var(--dark-primary-color)!important;
	position: absolute;
    right: 12px;
    top: 12;
}

.location-badge .logo {
	width: 200px;
    display: block;
    margin: 0 auto 48px;
    background-color: #FFFFFF;
    padding: 12px;
    border-radius: 1rem;
}

.location-badge h4 {
	margin-bottom: 24px;
}

@media(max-width:990px) {
	.location-badge h4 {
		margin-bottom: 12px;
	}
}

.location-badge .qr-code {
	max-width: 250px;
	margin-bottom: 24px;
}

@media(max-width:990px) {
	.location-badge .qr-code {
		margin-bottom: 12px;
	}
}

.location-badge h6{
	margin: 0;
}

.location-badge h1{
	font-size: 3.5rem;
	margin-bottom: 0;
}

.location-body {
	background: linear-gradient(180deg, var(--light-primary-color), transparent, transparent);
	background-color: var(--primary-color);
}

.location-page .page-header {
	background-color: var(--light-primary-color);
	box-shadow: 0 0 100px 100px var(--light-primary-color);
	padding: 24px;
    margin: 0 -24px 24px;
	border-radius: 0;
}

@media (max-width:990px) {
	.location-page .page-header {
		padding: 12px;
		margin: 0 -12px 12px;
	}
}

.location-page .page-header .logo img{
    height: 60px;
}

@media (max-width:990px) {
	.location-page .page-header .logo img {
		height: 48px;
		max-width: 100%;
	}
}

.location-page .page-header .players-priority-mode-selection-panel>.btn {
	margin-right: 3px;
}

.location-page .page-header .players-priority-mode-selection-panel>.btn i {
	margin-right: 12px;
}

@media (max-width:990px) {
	.location-page .page-header .players-priority-mode-selection-panel>.btn i {
		margin-right: 6px;
	}
}

.location-page .page-header .players-priority-mode-selection-panel>.btn i.fa-angle-down {
	margin-right: 0;
}

.location-page .page-header .players-priority-mode-selection-panel .dropdown-menu {
	max-height: unset;
}

.location-page .page-header .players-priority-mode-selection-panel .channel {
	margin: 6px 0 0;
	padding: 12px;
}

@media (max-width:990px) {
	.location-page .page-header .players-priority-mode-selection-panel .channel {
		padding: 12px;
	}
}

.location-page .page-header .players-priority-mode-selection-panel .channel img {
	float: left;
	width: 60px;
	margin-right: 12px;
}

.location-page .page-header .players-priority-mode-selection-panel .channel .details {
	overflow: hidden;
	height: 60px;
}

.location-page .page-header .players-priority-mode-selection-panel .channel .details h4 {
	font-size: 1rem;
	margin: 0;
	line-height: 60px;
}

.location-page .page-header .btn-help-file {
	height: 45px;
	width: 45px;
	padding: 0;
	text-align: center;
	line-height: 45px;
}

@media (max-width:990px) {
	.location-page .page-header .btn-help-file {
		height: 39px;
		width: 39px;
		line-height: 39px;
	}
}

.location-page .page-header .btn-help-file i {
	line-height: 42px;
	font-size: 1rem;
}

@media (max-width:990px) {
	.location-page .page-header .btn-help-file i {
		line-height: 37px;
	}
}

.location-page>.row.loggedin {
	min-height: calc(100vh - 234px);
}

@media(max-width:990px) {
	.location-page>.row.loggedin {
		min-height: calc(100vh - 165px);
	}
}

.location-page>.row.loggedout {
	min-height: calc(100vh - 179px);
}

@media(max-width:990px) {
	.location-page>.row.loggedout {
		min-height: calc(100vh - 126px);
	}
}

@media (min-width:990px) {
	.location-page .login-panel {
		padding: 48px;
	}

	.location-page .login-panel .panel-heading {
		margin-bottom: 96px;
	}

	.location-page .login-panel .row .col-md-4 {
		padding-right: 48px;
		border-right: 1px solid var(--light-primary-color);
	}
}

.location-page .login-panel .row .col-md-4 label {
	line-height: 1;
	margin: 0 0 6px;
}

.location-page .login-panel .row .col-md-4 .form-control {
	padding-left: 48px;
}

@media (min-width:990px) {
	.location-page .login-panel .row .col-md-4 .form-control {
		font-size: 1rem;
		padding: 1rem 1.25rem;
		padding-left: 48px;
	}
}

.location-page .login-panel .row .col-md-4 .form-group {
	position: relative;
}

.location-page .login-panel .row .col-md-4 .form-group>.fa {
	position: absolute;
	top: 25px;
	left: 20px;
	color: var(--dark-primary-color);
	opacity: 0.5;
}

@media (max-width:990px) {
	.location-page .login-panel .row .col-md-4 .form-group>.fa {
		top: 20px;
		font-size: 0.75rem;
	}
}

.location-page .login-panel .row .col-md-4 .form-group>.fa.fa-eye {
	left: auto;
	right: 20px;
	cursor: pointer;
	transition: 0.3s;
}

.location-page .login-panel .row .col-md-4 .form-group>.fa.fa-eye:hover {
	opacity: 1;
}

@media (min-width:990px) {
	.location-page .login-panel .row .col-md-4 .btn {
		font-size: 1rem;
		padding: 1rem 1.25rem;
	}
}

@media (min-width:990px) {
	.location-page .login-panel .row .col-md-8 {
		padding-left: 48px;
	}
}

.location-page .login-panel .row .col-md-8  img{
	width: 100%;
}

.location-page .players-channel-selection-panel .btn-back {
	float: left;
	margin-right: 12px;
}

@media (max-width:990px) {
	.location-page .players-channel-selection-panel .btn-back {
		float: none;
		margin-right: 0;
	}
}

.location-page .players-channel-selection-panel .image-overly {
	position: relative;
	width: 100%;
}

.location-page .players-channel-selection-panel .image-overly>img {
	max-width: 100%;
	width: 100%;
}

.location-page .players-channel-selection-panel>.row {
	margin: 0 -3px;
}

.location-page .players-channel-selection-panel > .row .col-md-2.col-3 {
	padding: 0 3px;
}

.location-page .channel {
	position: relative;
	cursor: pointer;
	background-color: var(--light-primary-color);
	border: 1px solid var(--light-primary-color);
	margin-bottom: 24px;
	border-radius: 1rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
}

@media (max-width:990px) {
	.location-page .channel {
		margin-bottom: 3px;
	}
}

.location-page .players-channel-selection-panel .image-overly .player-selected-channel {
	position: absolute;
	width: 84px;
	margin-bottom: 0;
}

@media (max-width:990px) {
	.location-page .players-channel-selection-panel .image-overly .player-selected-channel {
		width: 48px;
	}
}

.location-page .office-channel {
	position: relative;
	margin-bottom: 6px;
}

.location-page .office-channel.active::after {
	position: absolute;
    top: 12px;
    right: 12px;
    content: '\f058';
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 10rem;
    color: var(--primary-color);
    box-shadow: 0 0 3px #DDDDDD inset;
}

@media(max-width:990px) {
	.location-page .office-channel:hover::after, .location-page .office-channel.active::after {
		top: 6px;
    	right: 6px;
		font-size: 0.65rem;
		width: 18px;
		height: 18px;
		line-height: 18px;
	}
}

.location-page .channel  .fa-volume-xmark {
	position: absolute;
    top: 5px;
    left: 5px;
    background-color: #e3342f;
    color: #fff;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 10rem;
	font-size: 0.75rem;
}

.location-page .channel img {
	width: 100%;
	border-radius: 1rem;
}

.location-page .channel .dropdown {
	position: absolute;
	right: 3px;
	bottom: 3px;
}

.location-page .players-channel-selection-panel .image-overly .player-selected-channel .dropdown-menu.channels-dropdown-menu {
	min-width: auto;
	max-width: 250px;
}

.location-page .players-channel-selection-panel .image-overly .player-selected-channel .dropdown-menu.channels-dropdown-menu.show {
	min-width: 207px;
}

.location-page .players-channel-selection-panel .image-overly .player-selected-channel .dropdown-menu.channels-dropdown-menu .dropdown-item {
	border-bottom: none!important;
    padding: 0px!important;
    display: inline-block;
	width: calc(25% - 3px);
}

.location-page .players-channel-selection-panel .image-overly .player-selected-channel .dropdown-menu.channels-dropdown-menu .dropdown-item:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.location-page .players-channel-selection-panel .image-overly .player-selected-channel .dropdown-menu.channels-dropdown-menu .dropdown-item img {
	width: 100%;
	border-radius: 0.75rem;
}

.location-page .channel .dropdown .btn{
	padding: 6px 9px;
	font-size: 0.75rem;
}

@media (max-width:990px) {
	.location-page .channel .dropdown .btn{
		padding: 3px 6px;
		font-size: 0.5rem;
	}
}

.location-page .channel .dropdown p {
	margin-bottom: 0;
}

.location-page .channel .dropdown p label {
	width: 100%;
	font-weight: 400;
	line-height: 1;
}

.location-page .channel .dropdown p .float-end {
	margin-top: 5px;
}

.location-page .location-image-overly {
	margin: 0 auto 24px;
}

.location-page .footer {
	text-align: right;
	color: #FFFFFF;
}

.location-page .footer .btn {
	margin-bottom: 6px;
}
.location-page .footer .btn i{
	margin: 0 12px 0 0;
}

.bottom-line {
	font-size: 0.85rem;
}

.bottom-line.bottom-line-main {
	padding: 0 24px 24px 0;
    margin-bottom: 0;
    text-align: right;
}

@media (max-width:990px) {
	.bottom-line.bottom-line-main {
		padding: 0 12px 12px 0;
	}
}

.bottom-line.bottom-line-account {
	padding: 0 0 24px;
    margin-bottom: 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width:990px) {
	.bottom-line.bottom-line-account {
		padding: 0 0 12px;
	}
}

.location-body .bottom-line {
	text-align: right;
	color: #FFFFFF;
	padding: 0 24px;
	margin-bottom: 24px;
}

@media (max-width:990px) {
	.location-body .bottom-line {
		padding: 0 12px;
		margin-bottom: 12px;
	}
}