/* Add here all your CSS customizations */
/* search bar */
form.example input[type=text] {
  padding: 10px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #ffffff;
}

form.example button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #cc071e;
  color: white;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;

}

form.example button:hover {
  background: #ce2420;
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}
.inline-group label{
	font-size: 18px;
  margin-left: 10px;
}
.inline-group input{
	margin-right: 8px
}
.example input{
  border-radius: 30px 0px 0px 30px;
}
.example button{
  border-radius: 0px 30px 30px 0px;
}
/*end search bar*/

/*cnx button*/
.nav-link {
    font-size: 12px;
    font-weight: 600;
    padding: .5rem 0.5rem;
    border-left: solid 1px #eee;
    border-right: solid 1px #eee;
}
a.nav-link.cnx{
   background-color: #cc071e; 
   color: #fff;
}
a.nav-link.cnx:hover{
   background-color: #d4110c;
}
/*end cnx button*/

/*Card body*/
.card-body h4{
  font-weight: 600;
}

/*End Card body*/