* {
	padding: 0;
	margin: 0;
}
html {
	height: 100%;
}
body {
	font-family: 'Rubik', sans-serif;
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 14px;
	color: #0a0a0a;
	background: #f4f4f4;
}
.main {
	height: 100%;
}
.login {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	background: #fff;
	display: grid;
	grid-template-columns: 484px auto;
}
.login__left {
	min-height: 100vh;
	height: 100%;
	background-position: 50%;
	background-size: cover;
	position: relative;
	background: pink;
}
.login__right {
	min-height: calc(100% - 64px);
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto 24px;
	justify-items: center;
	align-items: center;
	padding: 32px 0;
	background: #fff;
}    
.login__content {
	width: 502px;
	margin-bottom: 40px;
}
.card {
	width: calc(100% - 96px);
	background: #fff;
	box-shadow: 0 2px 25px rgba(0,0,0,.05);
	border-radius: 1px;
	padding: 17px 22px;
	position: relative;
	-webkit-transition: box-shadow .1s;
	transition: box-shadow .1s;
	padding: 80px 48px;
}
.login__form {
	display: grid;
	grid-row-gap: 24px;
	grid-row-gap: 32px;
}
.login__title {
	text-align: center;
	font-weight: 700;
	color: #0a0a0a;
	font-size: 24px;
	line-height: 30px;
}
.form-group {
	position: relative;
}
.form-group label {
		color: #828282;
	font-size: 12px;
	display: block;
	margin-bottom: 8px;
	text-transform: uppercase;
	line-height: 12px;
	letter-spacing: .03em;
}
.form-group input {
	background: #fff;
	border: 1px solid #ddd;
	box-sizing: border-box;
	border-radius: 1px;
	height: 48px;
	width: 100%;
	padding-left: 14px;
	padding-right: 48px;
	font-size: 14px;
	color: #0a0a0a;
	-webkit-transition: border .1s;
	transition: border .1s;
}
.form-group input:focus {
	outline: none;
	border: 1px solid #025dff;
}
.form-group div {
	position: relative;
}
.form-group div svg {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 18px;
	pointer-events: none;
}   
.form-group.error input {
	border-color: #FF3636;
} 
.form-group.error input:focus {
	border-color: #FF3636;
}
.form-group.error label {
	color: #FF3636;
}
.button {
	margin-top: 16px;
	font-weight: 700;
	min-width: 123px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #025dff;
	color: #fff;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 400;
	border: 1px solid transparent;
	cursor: pointer;
	-webkit-transition: all .1s ease 0s;
	transition: all .1s ease 0s;
	outline: none;
}
.button:hover {
	background: #0053e8;
}
.button:active {
	background: #004ace;
}
.language {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.language>svg {
	margin-right: 8px;
}
.language__container {
	font-weight: 400;
	margin-left: 4px;
	position: relative;
	cursor: pointer;
}
.language>span {
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: #0a0a0a;
}
.language__btn {
	position: relative;
	display: flex;
	align-items: center;
}
.language__dropdown {
	position: absolute;
	bottom: calc(100% + 8px);
	right: -20px;
	min-width: 180px;
	background: #fff;
	box-shadow: 0 7px 50px rgba(0,0,0,.12);
	border-radius: 1px;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: opacity .1s,-webkit-transform .1s;
	transition: opacity .1s,-webkit-transform .1s;
	transition: opacity .1s,transform .1s;
	transition: opacity .1s,transform .1s,-webkit-transform .1s;
}
.language__dropdown-item.isActive {
	opacity: .5;
}
.language__dropdown-item {
	min-height: 40px;
	height: 40px;
	background: white;
	border: none;
	outline: none;
	vertical-align: middle;
	font-size: 14px;
	line-height: 22px;
	color: #0a0a0a;
	display: flex;
	align-items: center;
	padding: 0 14px;
	width: 100%;
	cursor: pointer;
	-webkit-transition: opacity .1s;
	transition: opacity .1s;
}
.language__dropdown-item:disabled {
	opacity: .7;
	cursor: default;
}
.language__container.isOpened .language__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.language__dropdown-item:disabled {
	opacity: .7;
	cursor: default;
}
.login__logo {
		position: absolute;
	top: 32px;
	left: 32px;
	z-index: 1;
	max-width: calc(100% - 64px);
	max-height: 48px;
}
.login__text {
	color: white;
	position: absolute;
	font-size: 16px;
	font-weight: 500;
	left: 32px;
	bottom: 32px;
}
.login__text:before {
	content: "";
	height: 3px;
	width: 21px;
	background: white;
	display: inline-block;
	position: absolute;
	margin-top: -10px;
}
.error-tit svg {
	left: 0;
	margin-top: 15px;
}
.error-tit span {
	position: absolute;
	left: 27px;
	font-size: 13px;
	color: #FF3636;
	padding-top: 7px;
}
.mob-header {
	display: none;
	background-position: 50%;
	background-size: cover;
}
@media only screen and (min-width: 1920px) {
	.login {
		grid-template-columns: 484px auto;
	}
}
@media only screen and (max-width: 992px) {
	input {
		 -webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	.login__text {
		display: none;
	}
	.mob-header {
		display: block;
		height: 196px;
		background: pink;
		position: absolute;
		top: 0;
		width: 100%;
		flex: 0 0 auto;
		background-image: url('https://mediasniper.ru/img/first-section_11.jpg');
		background-size: 100%;
	}
	.login {
		grid-template-columns: 0px auto;
		overflow: auto;
		position: relative;
	}
	.login__right {
		display: flex;
		flex-direction: column;
	}
	.card {
		box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
	}
	.login__content {
		top: 150px;
		flex: 1 0 auto;
		margin-top: 120px;
	}
	
	.login__content {
		margin-bottom: 10px;
	}
	.language { 
		bottom: 20px;
		position: absolute;
	}
}
@media only screen and (max-width: 600px) {
	.login__content {
		width: calc(100% - 32px);
		left: 16px;
	}
	.card {
		width: calc(100% - 32px);
		padding-left: 16px;
		padding-right: 16px;
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.button {
		font-weight: bold;
		text-transform: uppercase;
	}
}
@media only screen and (max-height: 650px) {
	.login {
		overflow: auto;
	}
	.login__content {
		margin-bottom: 40px;
	}
}
.black-header {
	display: block;
	position: relative;
	width: 100%;
}
.black-header__nav {
	background: #0a0a0a;
}
.black-header .content {
	width: calc(100% - 106px);
	max-width: calc(100% - 106px);
	height: 58px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-right: 53px;
	padding-left: 0px;
	margin: 0 auto;
}
svg.black-header__menu {
	stroke: currentcolor;
	fill: none;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round;
	color: rgb(255, 255, 255);
	height: 24px;
	width: 24px;
	cursor: pointer;
}

.black-header__logo {
	max-height: 24px;
	margin-left: 26px;
	margin-right: 26px;
	display: block;
}
.black-header .spacer {
	flex: 1 0 auto;
}
.header-account {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.header-account__icon {
	display: block;
	height: 38px;
	width: 38px;
	border-radius: 50%;
	background-position: 50%;
	background-size: cover;
}
.header-account__text {
	display: block;
	margin-left: 8px;
}
.header-account__balance, .header-account__login {
	font-size: 13px;
	line-height: 20px;
	color: #fff;
}
.header-account__login {
	font-weight: 500;
	display: flex;
	align-items: center;
}
.header-account__balance, .header-account__login {
	font-size: 13px;
	line-height: 20px;
	color: #fff;
}
.header-account__dropdown {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	background: #fff;
	border-radius: 1px;
	box-shadow: 0 6px 60px rgba(0,0,0,.22);
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	z-index: 15;
	-webkit-transition: all .2s ease 0s;
	transition: all .2s ease 0s;
}
.header-account__dropdown:before {
	content: "";
	position: absolute;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0L0 8h16L8 0z' fill='%23fff'/%3E%3C/svg%3E");
	width: 16px;
	height: 8px;
	top: -8px;
	left: 13px;
}
.header-account__dropdown .item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 15px;
	min-height: 48px;
	background: transparent;
	-webkit-transition: background .1s;
	transition: background .1s;
}
.header-account__dropdown .item svg {
	margin-right: 20px;
	color: #0a0a0a;
}
.header-account__dropdown .item span {
	font-size: 14px;
	line-height: 22px;
	color: #0a0a0a;
}





.gray_header {
	background: #181818;
	-webkit-transition: all .1s ease;
	transition: all .1s ease;
}
.gray_header .container {
	height: 48px;
	display: grid;
	grid-template-columns: 20% 60% 20%;
	align-items: center;
}
.container {
	max-width: 1204px;
	width: 100%;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;
	-webkit-transition: all .1s;
	transition: all .1s;
}
button {
	background: none;
	font-family: Rubik,sans-serif;
	border: none;
	padding: 0;
	margin: 0;
}
.gray_header__back {
	height: 100%;
	font-size: 12px;
	line-height: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-self: start;
	cursor: pointer;
	outline: none;
	margin: 0 0 0 -24px;
	padding: 0 24px;
}
.gray_header__back:hover {
	background: #222;
	opacity: 1;
}
.gray_header__tabs, .gray_header__tabs>a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.gray_header__tabs>a {
	font-size: 12px;
	line-height: 14px;
	color: #fff;
	padding: 0 24px;
	-webkit-transition: background .1s;
	transition: background .1s;
	position: relative;
	cursor: pointer;
	text-decoration: none;
}
.gray_header__tabs>a.isActive {
	background: #222;
}
.gray_header__tabs>a.isActive:before {
	opacity: 1;
}
.gray_header__tabs>a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #025dff;
	opacity: 0;
}
.gray_header__tabs>a.isDisabled {
	color: #828282;
	background: #181818;
	cursor: not-allowed;
	pointer-events: none;
}


.side-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	pointer-events: none;
	z-index: 1000;
	-webkit-animation: menu-close .3s forwards;
	animation: menu-close .3s forwards;
}
.side-menu.isOpened {
	pointer-events: all;
	-webkit-animation: menu-open .3s forwards;
	animation: menu-open .3s forwards;
}
.side-menu__bg {
	background: rgba(0,0,0,.4);
	right: 0;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	opacity: 0;
	z-index: 1;
}
.side-menu__bg, .side-menu__card {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}
.side-menu.isOpened .side-menu__bg {
	opacity: 1;
}
.side-menu__card {
	display: block;
	width: 330px;
	background: #fff;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s,-webkit-transform .3s;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
}
.side-menu.isOpened .side-menu__card {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.side-menu__card .header {
	display: block;
}
.side-menu__card .header__close {
	display: flex;
	height: 58px;
	justify-content: flex-start;
	align-items: center;
	padding: 0 36px;
}
.side-menu__card .header__close svg {
	cursor: pointer;
	color: #0a0a0a;
}
.side-menu__card .menu {
	flex: 1 0 auto;
}
.side-menu__card .menu__item.isActive,
.side-menu__card .menu__item.isActive:hover  {
	color: #025dff;
	font-weight: 500;
	background: #e3ecff;
	position: relative;
}

.side-menu__card .menu__item {
	width: 100%;
	display: flex;
	height: 56px;
	justify-content: flex-start;
	align-items: center;
	padding: 0 32px;
	font-size: 16px;
	line-height: 19px;
	color: #0a0a0a;
	cursor: pointer;
	-webkit-transition: background .1s;
	transition: background .1s;
}
.side-menu__card .menu__item.isDisabled {
	color: #b0b0b0;
	pointer-events: none;
}
.side-menu__card .menu__item:hover {
		background: #f6f6f6;
}
.side-menu__card .menu__item:focus {
		outline: 0 none;
}
.side-menu__card .menu__item svg {
	margin-right: 24px;
}
.side-menu__card .menu__item.isActive:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	border-top-right-radius: 1px;
	border-bottom-right-radius: 1px;
	background: #025dff;
}
.side-menu__card .menu__item.isActive .svg svg {
	fill: #025dff;
}
.header-account.isOpened .header-account__dropdown {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.main-header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 2;
}
.campaigns__table {
	margin-top: 120px;
}
/*Плашки*/
.container {
	max-width: 1204px;
	width: 100%;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;
	-webkit-transition: all .1s;
	transition: all .1s;
}





.main-table__over {
	margin-top: 160px;
}
.main-table {
	display: flex;
	flex-direction: column;
}
.main-table__header {
	display: flex;
	flex-wrap: nowrap;
	padding: 0 22px;
}
.main-table__header div {
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: .03em;
	padding-bottom: 16px;
	display: flex;
	padding-left: 15px;
	padding-right: 15px;
}
.main-table.sites .main-table__header div {
	width: calc(100% / 7);
}
.main-table.five-cells .main-table__header div {
	width: calc(100% / 5);
}
.main-table .main-table__header div:first-child {
	flex-shrink: 0;
	flex-basis: 40%;
	padding-left: 0;
}
.main-table .main-table__header div:last-child {
	flex-shrink: 0;
	flex-basis: 90px;
	padding-right: 0;
	justify-content: flex-end;
	text-align: right;
}
.main-table.five-cells .main-table__header div:last-child {
	flex-basis: 100px;
}
.main-table__item {
	display: flex;
	align-items: center;
	height: 76px;
	background: #fff;
	box-shadow: 0 2px 25px rgba(0,0,0,.05);
	border-radius: 1px;
	cursor: default;
	position: relative;
	transition: all .2s ease;
	padding: 0 22px;
	margin-bottom: 8px;
	z-index: 1;
}
.main-table__item:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.15);
	z-index: 1;
}
.main-table__item > a {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;  
}
.main-table__item .main-table__cell {
	display: flex;
	padding-left: 15px;
	padding-right: 15px;
}

.main-table__item .main-table__cell a {
	color: #0a0a0a;
}

.main-table.sites .main-table__item .main-table__cell {
	width: calc(100% / 7);
}
.main-table.five-cells .main-table__item .main-table__cell {
	width: calc(100% / 5);
}
.main-table .main-table__item .main-table__cell:first-child {
	flex-shrink: 0;
	flex-basis: 40%;
	padding-left: 0;
	
}
.main-table .main-table__item .main-table__cell:last-child {
	flex-shrink: 0;
	flex-basis: 90px;
	padding-right: 0;
	justify-content: flex-end;
}
.main-table.five-cells .main-table__item .main-table__cell:last-child {
	flex-basis: 100px;
}
.main-table__item .main-table__cell:first-child div {
	overflow: hidden;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.main-table__item .main-table__cell:first-child div strong {
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	display: block;
	/*white-space: nowrap;*/
	text-overflow: ellipsis;
	overflow: hidden;

	max-height: 60px;
	word-break: break-word;
	white-space: initial;
}
.main-table__item .main-table__cell:first-child div span {
	color: #828282;
	font-size: 12px;
	line-height: 18px;
}
.main-table__item-avatar {
	border-radius: 50%;
	min-width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #3137bd;
	font-weight: 500;
	font-size: 14px;
	margin-right: 16px;
}
.main-table__cell-status {
	font-size: 14px;
	display: flex;
}
.main-table__cell-status div {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	margin-right: 14px;
}
.main-table__cell-status.act {
	color: #149c08;
}
.main-table__cell-status.act div {
	border: 2px solid #149c08;
	background: #c8fcc3;
}
.main-table__cell-status.stop {
	color: #FF9C08;
}
.main-table__cell-status.stop div {
	border: 2px solid #FF9C08;
	background: #FFF2C5;
}
.main-table__cell-status.banned {
	color: #828282;
}
.main-table__cell-status.banned div {
	border: 2px solid #828282;
	background: #e2e2e2;
}
.main-table__cell-status.deleted {
	color: #FF3636;
}
.main-table__cell-status.deleted div {
	border: 2px solid #FF3636;
	background: #FFDBDB;
}
.main-table.sites .main-table__item .main-table__cell:nth-child(7) {
	flex-shrink: 0;
	/*background: red;*/
	flex-basis: 160px;
}
.main-table.sites .main-table__header div:nth-child(6) {
	flex-shrink: 0;
	/*background: red;*/
	flex-basis: 140px;
}
.main-table__cell-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #828282;
	cursor: pointer;
	-webkit-transition: all .1s ease;
	transition: all .1s ease;
	position: relative;
}
.main-table__cell-btn:hover {
	color: #222;
}
.main-table__cell-btn svg:last-child {
	display: none;
}
.main-table__over-list {
	z-index: 1;
}
.main-table__over-list.isActive .main-table__cell-btn {
	background: #f4f5f6;
	color: #222;
	z-index: 1;
}
.main-table__over-list.isActive .main-table__cell-btn svg:last-child {
	display: block;
	z-index: 1;
}
.main-table__over-list.isActive .main-table__cell-btn svg:first-child {
	display: none;
	z-index: 1;
}


.main-table__action-list {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	padding-right: 120px;
	display: flex;
	height: 100%;
	grid-auto-flow: column;
	align-items: center;
	justify-content: flex-end;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.main-table__over-list.isActive .main-table__action-list {
	opacity: 1;
	visibility: visible;
}
.main-table .main-table__action-list {
	width: calc(100% - 420px);
}
.main-table__action-list-item {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin-left: 30px;
}
.main-table__action-list>div {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	-webkit-transition: all .1s ease;
	transition: all .1s ease;
	z-index: 1;
}
.main-table__action-list-item-img {
	cursor: pointer;
	position: relative;
}

.main-table__action-list-item-img:hover {
	color: #025dff;
}
.main-table__action-list-item-img:hover svg path {
	stroke: #025dff;
}
.main-table__action-list-item-hint {
	display: none;
	position: absolute;
	bottom: calc(100% + 18px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 8px 14px;
	box-shadow: 0 7px 50px rgba(0,0,0,.12);
	border-radius: 2px;
	background: #222;
	color: #fff;
	z-index: 2;
	text-transform: none;
	white-space: nowrap;
}
.main-table__action-list-item-hint>* {
	position: relative;
	z-index: 1;
}
.main-table__action-list-item-img:hover .main-table__action-list-item-hint {
	display: block;
}

.main-table__action-list-item-hint:before {
	content: "";
	position: absolute;
	top: 100%;
	height: 20px;
	left: 0;
	right: 0;
	z-index: 0;
}
.main-table__action-list-item-hint:after {
	content: "";
	width: 0;
	height: 0;
	border-color: #222 transparent transparent;
	border-style: solid;
	border-width: 14px 15.5px 0;
	position: absolute;
	top: calc(100% - 4px);
	left: calc(50% - 15px);
	-webkit-filter: drop-shadow(0 15px 10px rgba(0,0,0,.12));
	filter: drop-shadow(0 15px 10px rgba(0,0,0,.12));
	background: transparent;
	z-index: 0;
}

.black-header__logo-wrap {
	position: relative;
	display: inline-block;
	margin-left: 26px;
	margin-right: 26px;
}

.black-header__logo-wrap .black-header__logo {
	height: 24px;
	margin-left: 0px;
	margin-right: 0px;
}

.black-header__logo-wrap .header-ny-hat {
	position: absolute;
	top: -23px;
	left: -15px;
}

.black-header__menu_wrap {
	position: relative;
}

.black-header__menu_wrap .header-ny-hat {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 35px;
	height: 35px;
}

/*==============================*/

.black-header .show-item-1, 
.black-header .show-item-2, 
.black-header .show-item-3, 
.black-header .show-item-4 {
	position: absolute;
}

.black-header .show-item-1 {
	top: 0px;
	left: 0px;
}

.black-header .show-item-2 {
	top: 20px;
	left: 500px;
}

.black-header .show-item-3 {
	top: 0px;
	right: 500px;
}

.black-header .show-item-4 {
	right: 0px;
	bottom: 0px;
}

.side-menu__card .sub_menu .sub_menu__item {
	text-decoration: none;
	color: #0a0a0a;
	display: block;
	padding: 10px 0px;
	padding-left: 80px;
	padding-right: 32px;
}

.side-menu__card .sub_menu .sub_menu__item:hover {
	background: #f6f6f6;
}

.side-menu__card .sub_menu .sub_menu__item.isActive, 
.side-menu__card .sub_menu .sub_menu__item.isActive:hover {
	color: #025dff;
	font-weight: 500;
	background: #e3ecff;
}

.card.card-light {
	padding: 0px;
}

.form-group.form-group-filter input,
.form-group.form-group-filter select {
	background: #fff;
	border: 1px solid #ddd;
	box-sizing: border-box;
	border-radius: 1px;
	height: 48px;
	width: 100%;
	padding-left: 14px;
	padding-right: 14px;
	font-size: 14px;
	color: #0a0a0a;
}

.form-group.form-group-filter .btn {
	border-radius: 1px;
	height: 48px;
}

/*================= Dashboard main ================*/

.dashboard-block {
	background: #fff;
	border-radius: 5px;
	border: 1px solid #ebebeb;
	height: 100px;
	min-width: 200px;
}

.dashboard-block-title {
	font-size: 18px; 
	font-weight: bold; 
	margin-bottom: 15px;
}

.dashboard-block-value {
	font-size: 24px;
}

.dashboard-user {
	margin-bottom: 10px;
}

.dashboard-user-role {
	color: #9b9b9b;
	font-size: 12px;
	font-family: roboto;
}

.dashboard-user-login {
	font-size: 22px;
	font-family: roboto-med;
}

.dashboard-filter {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-left: -7px;
	margin-right: -7px;
}
.dashboard-filter .filter-col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	width: 100%;
	padding-left: 7px;
	padding-right: 7px;
	margin-bottom: 5px;
}

.dashboard-filter .filter-select-btn {
	width: 100%;
	height: 44px;
	font-size: 12px;
	font-family: roboto-med;
	padding-left: 15px;
	padding-right: 15px;
	border: 1px solid #d7d7d7;
	background: white;
	box-shadow: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dashboard-filter .filter-select {
	position: relative;
	height: 44px !important;
	padding: 0.675rem 0.75rem;
	font-size: 12px;
	font-family: roboto-med;
	color: #0a0a0a;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.dashboard-filter .filter-select-wrap {
	position: relative;
}

.dashboard-filter .filter-select-wrap i {
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -6px;
	font-size: 12px;
}

.dashboard-filter .filter-input {
	font-size: 12px;
	height: 44px !important;
	font-family: roboto-med;
	color: #0a0a0a;
}

.dashboard-filter .filter-label {
	display: block;
	color: #6c757d !important;
	margin-bottom: 5px;
}

.dashboard-filter .btn-filter-apply {
	margin-top: 18px;
	height: 44px;
}

.dashboard-filter-modal {
	
}

.dashboard-filter-modal .modal-header {
	border-bottom: 0 none;
	flex-flow: row wrap;
}

.dashboard-filter-modal .modal-footer {
	justify-content: space-between;
}

.dashboard-filter-modal .select-all {
	cursor: pointer;
	color: #00A3FF;
	font-size: 12px;
	font-family: roboto;
}

.dashboard-filter-modal .modal-footer .btn-primary {
	background: #00A3FF;
	font-size: 12px;
	font-family: roboto-bold;
	border: 0 none;
	height: 40px;
}

.dashboard-filter-modal .modal-search-wrap {
	border-radius: 5px;
	border: 1px solid #D7D7D7;
	height: 45px;
	padding-left: 40px;
	position: relative;
	padding-right: 20px;
}

.dashboard-filter-modal .modal-search-wrap i {
	position: absolute;
	font-size: 12px;
	color: #9b9b9b;
	top: 16px;
	left: 15px;
}

.dashboard-filter-modal .modal-search-wrap input {
	width: 100%;
	height: 43px;
	border: none;
	outline: none;
	font-size: 12px;
	color: #9B9B9B;
}

.dashboard-filter-modal .modal-list-wrap {
	position: relative;
	min-height: 40px;
}

.dashboard-filter-modal .modal-list-reset {
	font-size: 12px;
	color: #00A3FF;
	float: right;
	cursor: pointer;
	position: absolute;
	right: 25px;
	top: -15px;
}

.dashboard-filter-modal .modal-list-reset i {
	padding-right: 5px;
}

.dashboard-filter-modal .modal-list-checkers {
	max-height: 250px;
	min-height: 80px;
	overflow-y: auto;
	padding: 0;
	margin: 0;
	margin-top: 20px;
}

.dashboard-filter-modal .modal-list-checkers li {
	height: 35px;
	list-style-type: none;
	display: block;
	width: 100%;
}

.dashboard-filter-modal .modal-list-checkers .checkbox {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 12px;
	text-align: left;
	color: #333;
	margin-top: 15px;
}

.dashboard-filter-modal .modal-list-checkers .checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 1px;
	height: 1px;
	top: 0px;
	left: 0px;
}

.dashboard-filter-modal .modal-list-checkers .checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background-color: white;
	border: 1px solid #BEBEBE;
}

.dashboard-filter-modal .modal-list-checkers .checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 5px;
	top: 3px;
	width: 4px;
	height: 8px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.dashboard-filter-modal .modal-list-checkers .checkbox input:checked ~ .checkmark {
	background-color: #00A3FF;
	border: 1px solid #00A3FF;
}

.dashboard-filter-modal .modal-list-checkers .checkbox input:checked ~ .checkmark:after {
	display: block;
}

.dashboard-table {
	border-collapse: separate;
	border-spacing: 0;
	margin-left: 1px;
}

.dashboard-table thead {
	position: sticky;
	top: 58px;
}

.dashboard-table thead tr {
	border: 0 none;
}

.dashboard-table thead th {
	border-bottom: 1px solid #EBEBEB;
	background-color: #fff;
}

.dashboard-table tfoot tr {
	border: 0 none;
}

.dashboard-table tfoot td {
	border-top: 1px solid #EBEBEB;
}

.dashboard-table th .fa-sort,
.dashboard-table th .fa-sort-up,
.dashboard-table th .fa-sort-down {
	cursor: pointer;
}

/*================= End Dashboard main ================*/