.lotusForm {
	background: #fefefe !important;
}

.bcSelect {  /* used for comboboxes to override lotusForm styles */
	margin: 0 0 1rem !important;
	padding: 0.5rem !important;
	padding-right: 1.5rem !important;
	border: 1px solid #cacaca !important;
}

.bcTextArea {  /* used for comboboxes to override lotusForm styles */
	margin: 0 0 1rem !important;
	padding: 0.5rem !important;
	border: 1px solid #cacaca !important;
}


/**** Custom Bootstrap4 navbar coloring override ****/
/* change the background color */
.navbar-custom2 {
	background-color:rgb(25,34,109) !important;
}
/* change the brand and text color */
.navbar-custom2 .navbar-brand,
.navbar-custom2 .navbar-text {
    color: rgba(255,255,255,1.0);
}
/* change the link color */
.navbar-custom2 .navbar-nav .nav-link {
    color: rgba(255,255,255,1.0);
}
/* change the color of active or hovered links */
.navbar-custom2 .nav-item.active .nav-link,
.navbar-custom2 .nav-item:focus .nav-link,
.navbar-custom2 .nav-item:hover .nav-link {
    color: rgba(255,255,255,0.8);
}

/* custom button colors 1 */
.btn-custom1 {
  color: #fff;
  background-color: rgb(223,94,98);
}
.btn-custom1:hover {
  color: #fff;
  background-color: rgba(223,94,98,0.8);
}
/* custom button colors 2 */
.btn-custom2 {
  color: #fff;
  background-color: rgb(0,186,188);
}
.btn-custom2:hover {
  color: #fff;
  background-color: rgba(0,186,188,0.8);
}
/* custom button colors 2 */
.btn-custom3 {
  color: #fff;
  background-color: rgb(228,11,20);
}
.btn-custom3:hover {
  color: #fff;
  background-color: rgba(228,11,20,0.8);
}

/* hide the drop-down carets in the navbar */
.dropdown-toggle::after {
    display:none;
}