/* Basic styles for the dropdown */
.country-custom-dropdown {
  position: relative;
  min-width: 80px;
  font-family: Arial, sans-serif;
  /* border: 1px solid #ccc;
  border-radius: 4px; */
}

.country-dropdown-toggle {
  padding: 8px 5px;
  /* background-color: #f8f8f8; */
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}

.country-dropdown-menu {
  position: absolute;
  width: 120px;
  /* border: 1px solid #ccc; */
  max-height: 150px;
  overflow-y: auto;
  z-index: 10;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 25px 10px;
  left: -30px;
  bottom: -90px;
}

.country-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
}

.country-dropdown-item:hover {
  background-color: #f1f1f1;
}

.country-flag-icon {
  width: 20px;
  height: 14px;
  margin-right: 10px;
}


@media screen and (min-width: 769px) and (max-width: 1049px) {

.country-dropdown-menu{
  left: 0px !important;
}

}

@media screen and (min-width: 320px) and (max-width: 768px) {

  .country-dropdown-menu{
    left: -38px !important;
    bottom: -77px !important;
  }
  
  }