.custom-dropdown {
  position: relative;
  width: 100%;
  font-family: 'Lato', sans-serif;
}

.dropdown-toggle {
  width: 100%;
  padding: 20px 20px 20px 15px;
  border: none;
  background: #fcf176;
  box-shadow: 0 0 3px #2faac9;
  margin-bottom: 25px;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  color: #000;
  font-style: italic;
  font-family: 'Lato', sans-serif;
  position: relative;
  letter-spacing: 0.2px;
}

.dropdown-toggle:focus {
  outline: none;
  border-color: #666666;
}

.dropdown-menu {
  position: absolute;
  top: 85%;
  left: 0;
  width: 100%;
  background: #fcf176;
  border: 1px solid #cccccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 9;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.dropdown-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  color: #000;
}

.dropdown-option:hover {
  background: #f5f5f5;
}

.dropdown-option input[type="checkbox"] {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.dropdown-option span {
  flex: 1;
  font-size: 14px;
}

.dropdown-option input:checked + span {
  font-weight: bold;
  color: #0066cc;
}
.sel-chk-head
{
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 5px;
  color: #000;
  font-style: italic;
  letter-spacing: 0.4px;
}