.bc-form .selected-country {
  cursor: pointer;
  user-select: none;
}

.bc-form .select-drop-menu-hidden .custom-select-wrap {
  display: none;
  max-height: 0;
}

.bc-form .select-drop-menu-show .custom-select-wrap {
  display: block;
  max-height: 230px;
}

.bc-form .select-drop-menu-show .selected-country-arrow {
  transform: rotate(180deg);
}

.bc-form .custom-select-wrap {
  position: absolute;
  z-index: 30;
  top: 58px;
  left: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
  scrollbar-color: #94a3b8 #f1f5f9;
  scrollbar-width: thin;
}

.bc-form .custom-countryElem {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 7px;
  color: #111827;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .15s;
}

.bc-form .custom-countryElem:hover {
  background: #eaf2ff;
}

.bc-form .custom-countryElem img {
  flex: 0 0 24px;
  width: 24px;
  height: 18px;
  margin: 0;
  object-fit: cover;
}

.bc-form .custom-select-country {
  flex: 0 0 48px;
  width: auto;
  color: #1e293b;
  font-weight: 700;
}

.bc-form .custom-select-name {
  min-width: 0;
  overflow: hidden;
  color: #475569;
  text-overflow: ellipsis;
  white-space: nowrap;
}
