/* Utilities */
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}

/* Buttons */
.round-white-btn,.round-white-btn:hover {
    border-radius: 999px !important;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgb(223, 230, 235);
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Forms*/
.form-group.required .control-label:after {
  content:" *";
  color: #cc0000;
  position: absolute;
  right: -1px;
  font-size: 14px;
}
.form-group .form-control {
  font-size: 14px;
  font-weight: 600;
}

/*Select2*/
.select2.select2-container--default .select2-selection--multiple {
  border: 1px solid #E8E8E8 !important;
  border-radius: 2px;
}

/*Popover*/
.popover-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: capitalize;
}

/*Color*/
.blue {
  color: #3598db !important;
}