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

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

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

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

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

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

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

.tobacco .container .manualContainer .form .body .button {
	padding: 0;
    padding-left: 0.75rem;
	padding-right: 0.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 .manualContainer .form .body .button.submit{
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}

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

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

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

.tobacco .manualContainer a{
	color: #17a2b8!important;
	text-decoration: unset;
}

.tobacco .manualContainer a:hover{
	font-weight: bold;
}

.tobacco .manual{
	min-height: 100px;
    border: 1px solid #dee2e6;
    margin-top: -1px;
}

.tobacco .manual .manualCard{
	width: calc((100% - (10px * 3)) / 3);
    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;
    display: flex;
    flex-direction: column;
	cursor: pointer;
}

.tobacco .manual .manualCard .image{
	display: flex;
    justify-content: center;
	cursor: pointer;
	min-height: 258px;
    max-height: 258px;
}

.tobacco .manual .manualCard .image:hover{
	opacity: .9;
}

.tobacco .manual .manualCard .image img{
	min-height: 100%;
    max-height: 100%;    
    min-width: 100%;
	max-width: 100%;
	object-fit: cover;
	border-radius: .25rem .25rem 0 0;
}

.tobacco .manual .manualCard .topic{
	font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.tobacco .manual .manualPDFCard{
	display: flex;
	justify-content: space-between;
	background: #f9fafb;
	border-radius: .25rem;
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    border: 1px solid #dee2e6!important;
	padding: 15px 20px;
}

.tobacco .manual .manualPDFCard .topic{
	font-size: 1.5em;
    font-weight: bold;
}

.tobacco .manual .manualPDFCard:hover{
	font-weight: bold;
	transition: .2s all;
	cursor: pointer;
}

@media only screen and (max-width: 1380px) {
	.tobacco .manual .manualCard{
		width: calc(100% - 557px)
	}
}

@media only screen and (max-width: 1050px) {
	.tobacco .manual .manualCard{
		width: calc(100% - 346px);
	}
}

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

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

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

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

	.tobacco .manual .manualCard{
		width: 100%;
	}
}