.tobacco .dialog{
	position: absolute;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(8px) brightness(100%) saturate(50%);
    left: 0;
    top: 0;
}

.tobacco .dialog .container{
	position: absolute;
	top: 10rem;
	text-align: left;
	border-radius: calc(.3rem - 1px);
	min-width: 20rem;
    max-width: 30rem;
	max-height: calc(100vh - 20rem);
	height: auto;
	overflow-y: auto;
	display: flex;
	flex-wrap: wrap;
	padding: 0 !important;
	box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 50%);
}

.tobacco .dialog .container .title{
	width: 100%;
    background: #17a2b8 linear-gradient(180deg,#3ab0c3,#17a2b8) repeat-x!important;
    color: #fff;
    padding: .75rem 1rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.tobacco .dialog .container .body{
	width: 100%;
	background: #fff;
	min-height: 10px;
    color: black;
}

.tobacco .dialog .container .operation{
	width: 100%;
    background: #fff;
    padding: .75rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.tobacco .dialog .container .operation .cancel{
	color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
	padding: .375rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
	font-weight: 400;
	cursor: pointer;
}

.tobacco .dialog .container .operation .submit{
	color: #fff;
    background-color: #007bff;
    border-color: #007bff;
	padding: .375rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
	font-weight: 400;
	cursor: pointer;
}

.tobacco .dialog .container .operation .alert{
	color: #fff;
    background-color: red;
    border-color: red;
	padding: .375rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
	font-weight: 400;
	cursor: pointer;
}

.tobacco .dialog .container .operation .warning{
	color: #fff;
    background-color: orange;
    border-color: orange;
	padding: .375rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
	font-weight: 400;
	cursor: pointer;
}

.tobacco .dialog .container .operation .preview{
	color: #fff;
    background: #2dbfb3;
	padding: .375rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
	font-weight: 400;
	cursor: pointer;
}

.tobacco .dialog .container .operation .info{
	color: #fff;
    background: #17a2b8 linear-gradient(180deg,#3ab0c3,#17a2b8) repeat-x!important;
	padding: .375rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
	font-weight: 400;
	cursor: pointer;
}

@media only screen and (max-width: 600px) {
	.tobacco .dialog .container{
		min-width: 20rem;
		max-width: 20rem;
		top: 5rem;
    	max-height: calc(100vh - 10rem);
	}
}