.alert {
  color: red;
  font-size: 15px;
}

.modal-content {
  background-color: #6b5f5f;
  margin-top: 150px;
}

.btn-link {
  color: white;
}

.btn-with {
  width: 150px;
}

.modal-heading h2 {
  color: #ffffff;
}

.js-example-basic-multiple-limit {
  width: 300px;
}



/* The container */
.container-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
}

/* Create a custom checkbox */
/*.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border: 1px solid #a9b7bb;
}*/
/* On mouse-over, add a grey background color */
.container-checkbox:hover input~.checkmark {
  /*background-color: #ccc;*/
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked~.checkmark {
  /*background-color: #38829e;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 29px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #ddab26;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*.ms-drop ul > li {
    position: relative;
    float: left;
    width: 100%;
    height: 32px;
  }*/


input[type="checkbox"],
input[type="radio"] {
  margin: -6px 6px 0 0;
}

.container-checkbox {
  margin-left: 20px;
}

.ms-select-all .container-checkbox {
  margin-left: 0px;
}