.tobacco .container .dashboardContainer{
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tobacco.backend .container .dashboardContainer .header{
	background: #17a2b8 linear-gradient(180deg,#3ab0c3,#17a2b8) repeat-x!important;
	padding: 30px .5rem;
}

.tobacco.frontend .container .dashboardContainer .header .title{
	color: #17a2b8!important;
	font-size: 1.75rem;
    font-weight: 500;
    line-height: 2;
}

.tobacco.backend .container .dashboardContainer .header .title{
	color: #fff!important;
	font-size: 1.75rem;
    font-weight: 500;
    line-height: 2;
}

.tobacco .container .dashboardContainer .header .label{
	color: #5d6974!important;
	font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
	display: flex;
	gap: 5px;
}

.tobacco .container .dashboardContainer .header .label:hover{
	cursor: pointer;
}

.tobacco .container .dashboardContainer .header .svg{
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.tobacco .container .dashboardContainer .header .text{
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.tobacco .container .dashboardContainer .header .subTitle{
	color: #6c757d!important;
	font-size: 1rem;
    font-weight: 400;
    line-height: 2.5;
}

.tobacco .container .dashboardContainer .form .body .button {
	padding: 0;
    padding-left: 1.75rem;
	padding-right: 1.75rem;
	line-height: calc(1.5em + .75rem);
	font-size: 1rem;
	font-weight: 400;
	border-radius: .25rem;
	font-family: var(--main-font-family) !important;		
	box-shadow: none;
	cursor: pointer;
}

.tobacco .container .dashboardContainer .form .body .button.submit{
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}

.tobacco .container .dashboardContainer .form .body .button.submit:hover{
	color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.tobacco .container .dashboardContainer .form .body .button.reset{
	color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.tobacco .container .dashboardContainer .form .body .button.reset:hover{
	color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.tobacco .container .dashboardContainer .menu{
    flex-wrap: wrap;
}

.tobacco .container .dashboardContainer .menuCard{
	width: calc((100% / 3) - 10px);
	border-radius: .25rem;
	background: #fff;
	box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
	border: 1px solid #dee2e6!important;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
}

.tobacco .container .dashboardContainer .menuCard.pink{
	color: #fff !important;
	background: #e83e8c linear-gradient(180deg,#eb5b9d,#e83e8c) repeat-x!important;
}

.tobacco .container .dashboardContainer .menuCard.mint{
	color: #fff !important;
	background: #17a2b8 linear-gradient(180deg,#3ab0c3,#17a2b8) repeat-x!important;
}

.tobacco .container .dashboardContainer .menuCard.blue{
	color: #fff !important;
	background: #007bff linear-gradient(180deg,#268fff,#007bff) repeat-x!important;
}

.tobacco .container .dashboardContainer .menuCard.green{
	color: #fff !important;
	background: #28a745 linear-gradient(180deg,#48b461,#28a745) repeat-x!important;
}

.tobacco .container .dashboardContainer .menuCard.yellow{
	color: #1f2d3d !important;
	background: #ffc107 linear-gradient(180deg,#ffca2c,#ffc107) repeat-x!important;
}

.tobacco .container .dashboardContainer .menuCard.red{
	color: #fff !important;
	background-color: #dc3545!important;
}

.tobacco .container .dashboardContainer .menuCard .svg{
	position: absolute;
    width: calc(100% - (1.25rem * 2));
    height: calc(100% - (1.25rem * 2));
    opacity: 0.2;
    text-align: right;
}

.tobacco .container .dashboardContainer .menuCard .svg svg{
    width: unset !important;
	height: 100% !important;
}

.tobacco .container .dashboardContainer .menuCard .label{
	text-align: left;
	font-size: 1rem;
    font-weight: 400;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	line-height: 2.0;
}

.tobacco .container .dashboardContainer .menuCard .number{
	font-size: 2rem;
    font-weight: 300;
	text-align: left;
}

.tobacco .container .dashboardContainer .form{
	width: calc(50% - (15px / 2));
}

@media only screen and (max-width: 600px) {
	.tobacco .container .dashboardContainer .header .label{
		display: none;
	}

	.tobacco.fronted .container .dashboardContainer .header .title{
		margin-bottom: 1.5rem;
	}

	.tobacco .container .dashboardContainer .header .subTitle{
		display: none;
	}

	.tobacco .container .dashboardContainer .menuCard{
		width: calc(50% - (15px / 2));
	}

	.tobacco .container .dashboardContainer .menu {
		flex-wrap: wrap;
	}

	.tobacco .container .dashboardContainer .form{
		width: 100%;
	}
}