:root {
	--border-radius: 5px;

	--color-main: rgb(255, 7, 99);
	--color-orange: #ffb32e;
	--color-green: #26AB36;
}

* {
	box-sizing: border-box !IMPORTANT;
	overflow-wrap: break-word;
}

html,
body {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	height: 100%;
}

body {
	font-size: 16px;
	font-family: "Open Sans";
	background: rgb(233, 240, 246);
	background: rgb(244, 248, 250);
	color: #444;
}

/* */

.dfw {
	display: flex;
	flex-wrap: wrap;

}

/* width */

.w-30-i {
	width: 30% !important;
}

.w-40-i {
	width: 40% !important;
}

.w-50-i {
	width: 50% !important;
}

.w-60-i {
	width: 60% !important;
}

.w-70-i {
	width: 70% !important;
}

.w-100-i {
	width: 100% !important;
}

/* */

.logo {
	display: block;
	width: 360px;
	padding: 20px;
}

.main {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.main>.top {
	position: relative;
	z-index: 999;
	box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.6);
	background: #fff;
}

.main>.middle {
	display: flex;
	flex-grow: 1;
}

.main>.middle>.left {
	flex: 200px 0 0;
	background: #fff;
}

.main>.middle>.content {
	flex-grow: 1;
	padding: 10px;
}

/* box */

.box {
	flex-grow: 1;
	padding: 10px;
}

.box>.inr {
	box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.6);
	border-radius: var(--border-radius);
	background: #fff;
	padding: 10px;
}

.box>.inr>.title {
	padding: 10px;
	font-size: 20px;
	font-weight: 500;
}

/* login */

.box-login {
	max-width: 400px;
}

/* menu - left */

.menu-left {
	padding: 15px;
}

.menu-left>.item {
	padding: 5px 5px;
}

.menu-left>.item>a {
	text-decoration: none;
	color: #666;
	font-size: 18px;
}

/* list items */

.list-items {
	flex: 100% 0 0;
	max-width: 100%;
	padding: 10px;
}

.list-items .rows {
	display: flex;
	flex-wrap: wrap;
}

.list-items .rows>.row {
	flex: 100% 0 0;
	border-top: 1px dashed rgb(181, 190, 198);
	position: relative;
}

.list-items .rows>.row:first-child {
	border: 0;
}

.list-items .rows>.row>.cols {
	display: flex;
	align-items: center;
}

.list-items .rows>.row>.cols>.col {
	padding: 10px;
	position: relative;
}

.list-items .rows>.row>.cols>.col.col-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.list-items .rows.rows-content .row>.cols>.col.col-actions {
	padding: 0;
}

.list-items .rows>.row>.cols>.col.col-actions>.action {
	padding: 0 10px;
	display: block;
	cursor: pointer;
}

.list-items .rows>.row>.cols>.col.col-actions>.action::before {
	display: block;
	content: "\f044";
	font-family: icons;
	color: var(--color-main);
	font-size: 30px;
	line-height: 30px;
}

.list-items .rows>.row>.cols>.col.col-actions>.action.action-edit::before {
	padding: 3px 0 0 0;
}

.list-items .rows>.row>.cols>.col.col-actions>.action.action-del::before {
	content: "\f014";
	color: rgb(232, 130, 0);
}

.list-items .rows.rows-header,
.list-items .rows.rows-footer {
	border-top: 0;
	background: rgb(233, 240, 246);
	font-weight: 500;
}

.list-items .rows.rows-header.sticky {
	position: sticky;
	top: 55px;
	z-index: 999;
}

.list-items .rows.rows-footer.sticky {
	position: sticky;
	bottom: -10px;
	z-index: 999;
}

.list-items .rows.rows-header.sticky-sub-nav {
	position: sticky;
	top: -10px;
	z-index: 999;
}

.list-items .rows.rows-header .col.col-sortable {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.list-items .rows.rows-header .col.col-sortable .sortable {
	position: relative;
	height: 20px;
	margin: 0px 0 0 10px;
}

.list-items .rows.rows-header .col.col-sortable .sortable::before,
.list-items .rows.rows-header .col.col-sortable .sortable::after {
	position: absolute;
	font-family: icons;
	display: block;
	color: #777;
}

.list-items .rows.rows-header .col.col-sortable .sortable::before {
	content: "\E171";
}

.list-items .rows.rows-header .col.col-sortable .sortable::after {
	content: "\E172";
}

.list-items .rows.rows-header .col.col-sortable[data-sort-direction="desc"] .sortable::before {
	color: var(--color-main);
}

.list-items .rows.rows-header .col.col-sortable[data-sort-direction="asc"] .sortable::after {
	color: var(--color-main);
}

/* list items - active */

.list-items .col-active {
	flex: 82px 0 0;
}

.list-items .rows.rows-content .col.col-active {
	padding-left: 16px;
	cursor: pointer;
}

.list-items .rows.rows-content .col.col-active::before {
	display: flex;
	font-family: icons;
	font-size: 20px;
	line-height: 20px;
	border-radius: 100px;
	width: 25px;
	height: 25px;
	align-items: center;
	justify-content: center;
}

.list-items .rows.rows-content .col.col-active[data-val="-1"]::before {
	content: "\E13C";
	border: 1px solid var(--color-orange);
	color: var(--color-orange);
}

.list-items .rows.rows-content .col.col-active[data-val="0"]::before {
	content: "\E104";
	border: 1px solid var(--color-main);
	color: var(--color-main);
}

.list-items .rows.rows-content .col.col-active[data-val="1"]::before {
	content: "\E012";
	border: 1px solid var(--color-green);
	color: var(--color-green);
}

/* popup */

.popup {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	overflow-y: auto;
}

.popup>.inr {
	margin: 0 auto;
	max-width: 800px;
}

/* pagination */

.pagination {
	display: flex;
	list-style: none;
	padding: 5px 0;
	margin: 0 -5px;
}

.pagination>li {
	padding: 5px;
}

.pagination>li>a {
	display: block;
	padding: 5px 10px;
	background: rgb(233, 240, 246);
	cursor: pointer;
	transition: all .2s;
}

.pagination>li.active>a,
.pagination>li>a:hover {
	color: #fff;
	background: var(--color-main);
}