.accordion {
	background-color: whitesmoke;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	border-bottom: solid #32a1ce;
}

.active-tender, .accordion:hover {
	background-color: rgb(105, 169, 252);  
	color: #fff;
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.accordion:after {
	content: "+";
	font-size: 15px;
	font-weight: 700;
	color: #777;
	float: right;
	margin-left: 5px;
}

.active-tender:after {
	content: "-";
	font-size: 15px;
}

.hiddenRow {
    padding: 0 !important;
	border-bottom: solid #32a1ce;
}

.accordion-toggle {
	cursor: pointer;
}

.accordion-toggle:hover {
	/* background-color: rgb(105, 169, 252);   */
	/* color: #fff; */
	transition: max-height 0.2s ease-out;
}

.accordian-body {
	background-color: #fff;
	padding: 0 18px;
}









