/* .form_check {
  position: relative;
  margin-bottom: 15px;
} */

/* .form_check_label {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #fff;
  margin-right: 10px;
} */

.form_check_label img {
  width: 20px;
  height: 20px;
  /* margin-right: 10px; */
}

.dropdown-options {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 10;
  width: 100%;
}

.dropdown-options.open {
  display: block;
}

.dropdown-option {
  display: flex;
  align-items: center;
  padding: 5px 2px;
  cursor: pointer;
  background-color: var(--yellow4);
}

.dropdown-option img , .nothing-selected {
  width: 20px;
  height: 20px;
  margin-right: 0px;
}

.dropdown-option:hover {
  background-color: #f0f0f0;
}

.divTableCell3 .dropdown-option {
  display: flex;
  align-items: center;
  padding: 5px 2px;
  cursor: pointer;
  justify-content: space-around;
  position: relative;
  width: 25px;
  margin-left: 20px;
}

.divTableCell3 .dropdown-options {
  background-color: transparent;
  border: solid 0px red;
}