/*===========================================
=            new bo account form            =
===========================================*/

.accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f077";
    float: right; 
}
.accordion .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\f078"; 
}

.card-header:first-child {
    border-radius: 10px;
}

.card-header {
    color: #ffffff;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    margin-bottom: 0;
    background-color: var(--green);
     border-bottom: unset !important;
     cursor: pointer;
}

.card-header[aria-expanded="true"]{
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-height: 1px;
	padding: 1.25rem;
	background: #eeeeee;
	border: 1px solid lightgray;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.form-group label{
	font-weight: bold;
	margin-left: 5px;
}

.label-required:after{
	content: "*";
	color: red;
}

textarea{
	max-height: 200px;
	overflow-y: scroll;
}


/*=====  End of new bo account form  ======*/
