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

::-webkit-scrollbar {
	background: var(--dark-primary-color);
	width: 12px;
}

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

::-webkit-scrollbar-thumb {
	background: var(--light-primary-color);
	border: 3px solid var(--dark-primary-color);
}

::-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, var(--primary-color), var(--primary-color), var(--dark-primary-color));
	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: 11.5px;
	font-weight: 500;
	border: 1px solid #DDDDDD;
	transition: 0.3s;
}

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

@media(max-width:990px) {

	.form-control,
	.form-select {
		padding: 6px;
	}

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

.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;
}

.form-check-input:checked, .form-check-input:focus {
	background-color: var(--primary-color);
    border-color: var(--primary-color);
	box-shadow: none;
}

textarea.form-control {
	height: auto;
}

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

.btn {
	color: #FFFFFF !important;
	padding: 10.5px;
	font-weight: 500;
	box-shadow: 0 0 0 2px transparent;
	transition: 0.3s;
}

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

.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);
	border-color: transparent;
	text-align: left;
	transition: 0.3s;
}

.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: var(--primary-color) !important;
	border-color: var(--dark-primary-color)!important;
	background-color: var(--dark-primary-color)!important;
	box-shadow: none;
}

.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;
}

.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 th:first-child,
.table td:first-child {
	padding-left: 0;
}

.table th:last-child,
.table td:last-child {
	padding-right: 0;
}

.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;
}

.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: 0.25rem;
	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;
	max-height: 350px;
	overflow: auto;
	border-radius: 0.25rem;
}

.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: 0.25rem !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: 0.25rem;
}

.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: 0.25rem;
	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;
}

.account-page {
	position: relative;
	height: 100vh;
	margin: 0 -24px;
}

@media (max-width:1200px) {
	.account-page {
		margin: 0 -12px;
	}
}

.account-page::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: var(--primary-color);
}

.account-page .panel {
	position: absolute;
	top: 50%;
	left: 15%;
	transform: translateY(-50%);
	width: 50%;
	padding: 0;
	max-height: calc(100vh - 48px);
	overflow: auto;
	background-color: transparent;
	box-shadow: #00000026 0px 0px 24px 12px;
}

@media (max-width:1200px) {
	.account-page .panel {
		width: calc(100% - 48px);
		left: 24px;
	}
}

@media (max-width:600px) {
	.account-page .panel {
		width: calc(100% - 24px);
		left: 12px;
		background-color: #fff;
		padding: 12px;
	}
}

@media (min-width:600px) {
	.account-page .panel .logo {
		position: absolute;
		left: 0;
		top: 0;
		width: 30%;
		height: 100%;
	}

	.account-page .panel .logo img {
		position: absolute;
		width: 50%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

@media (max-width:600px) {
	.account-page .panel .logo img {
		width: 120px;
		margin: 0 auto 24px;
	}
}

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

@media (min-width:600px) {
	.account-page .panel>form {
		width: 70%;
		margin-left: 30%;
		padding: 48px 10%;
	}
}

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

.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: 45px;
	left: 20px;
	color: var(--dark-primary-color);
}

@media (max-width:990px) {
	.account-page .panel .form-group>.fa {
		top: 33px;
		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: var(--primary-color);
	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: 36px;
	height: 36px;
	text-align: center;
	margin: 0 6px;
	color: var(--primary-color);
	background-color: var(--dark-primary-color);
	border-radius: 0.25rem;
	transition: 0.3s;
}

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

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

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

header ul>li>a>i {
	line-height: 36px !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: 0.25rem;
}

.main-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 285px;
	height: calc(100% - 84px);
	z-index: 9999;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: var(--primary-color);
	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 {
	width: 40%;
    display: block;
    margin: 24px auto;
}

.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(--light-primary-color);
	font-weight: 500;
	white-space: nowrap;
	padding: 6px;
	margin-bottom: 6px;
	transition: 0.3s;
	border-radius: 0.25rem;
}

.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(--dark-primary-color);
	color: var(--primary-color);

}

.main-menu .main-menu-list>li>a i.icon-left {
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	margin-right: 6px;
	color: var(--light-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: var(--primary-color);
	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: 6px 0 6px 24px;
	margin-bottom: 3px;
	color: var(--light-primary-color);
	font-weight: 500;
	border-radius: 0.25rem;
	transition: 0.3s;
}

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

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

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

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

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

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

.page {
	position: relative;
}

.page-header {
	position: relative;
	margin: 24px 0 0;
}

@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);
	line-height: 49px;
	font-weight: bold;
	padding-left: 24px;
}

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

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

.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;
	padding-left: 0;
}

@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: '';
    position: absolute;
    left: 8px;
    top: 21px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--primary-color);
    padding: 0;
}

@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);
}

@media (max-width:990px) {
	.page-header .actions-panel form .fa-search {
		position: relative;
		float: right;
		margin-top: -30px;
		margin-right: -10px;
		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.4%;
	}
}

.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: 24px;
	margin-bottom: 24px;
	border-radius: 0.25rem;
	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: 0.25rem;
	z-index: 999;
}

.statistics-table-panel {
	background-color: #FFFFFF;
	padding: 24px;
	margin-bottom: 24px;
	border-radius: 0.25rem;
	box-shadow: #DDDDDD 0px 1px 2px 0px;
	height: 500px;
	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 {
	margin-bottom: 24px;
}

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

.panel {
	position: relative;
	margin-bottom: 24px;
}

@media(max-width:990px) {
	.panel {
		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: 0.25rem;
	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: 0.25rem;
}

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

.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;
}

.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 24px 24px 0;
	margin-bottom: 0;
	text-align: right;
	position: absolute;
	bottom: 0;
	width: 100%;
}

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