:root {
  --main-theme-color: #3969ff;
  --main-element-color: rgba(0, 0, 0, 0.3);
}

.board-team-mapping-modal-header-bg {
  background-color: var(--main-theme-color);
  color: #fff;
  cursor: move;
}

.ticket-and-pm-board-team-mapping-modal-grey {
  color: #727272;
}

.board-team-mapping-modal-mt-15 {
  margin-top: 15px;
}

.board-team-mapping-modal-title {
  font-size: 16px;
}

.input-Checkbox-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #727272;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-Checkbox-label .inputCheck {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.input-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.create-team-text-style {
  color: #727272;
  text-decoration: underline;
  cursor: pointer;
}

.create-team-text-style:hover, .create-team-text-style:focus {
  color: #555;
  text-decoration: underline;
  cursor: pointer;
}

.input-Checkbox-label:hover .inputCheck~.input-checkmark {
  background-color: #ccc;
}

.input-Checkbox-label .inputCheck:checked~.input-checkmark {
  background-color: #026aa7;
}

.input-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.input-Checkbox-label input:checked~.input-checkmark:after {
  display: block;
}

.input-Checkbox-label .input-checkmark:after {
  left: 6px;
  top: 3px;
  width: 8px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-board-team-mapping-modal-button {
  background-color: var(--main-theme-color);
  border-color: var(--main-theme-color);
  color: #fff;
  padding: 6px 21px;
}

.btn-board-team-mapping-modal-button:hover, .btn-board-team-mapping-modal-button:focus, .btn-board-team-mapping-modal-button:active {
  color: #fff;
}

.sideBoardDropdownMenu {
  min-width: 300px;
}

.board-team-mapping-modal-close-button {
  background-color: transparent;
  cursor: pointer;
  color: #ccc;
}