.select {
  overflow: hidden;
  height: 50px;
  width: 100%;
  margin: 0 15px;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 15px;
}

.option {
  width: 100%;
  padding: 15px 35px 17px 5px;
	border-radius: 15px 15px 15px 15px;
}

.options .option:first-child {
  border-radius: 15px 15px 0px 0px;
}

.options .option:last-child {
  border-radius: 0px 0px 15px 15px;
}

.options {
  position: absolute;
	width: 415px;
  display: none;
  border: 1px solid #ccc;
  border-radius: 15px;
  color: #000;
	background: #fff;
  text-align: center;
  height: 250px;
  overflow: auto;
	z-index:999999;
}

.options:hover {
	position: absolute;
	display: block;
  cursor: pointer;
	width: 415px;
}

.selector {
    width: 415px;
    position: relative;
    z-index: 99999999999;
}

.select-dropdown {
  position: absolute;
  right: 30px;
  top: 15px;
	color: #000000;
}

.outer {
  width: 400px;
}

.flag-icon {
  margin-right: 5px;
}

.selected_option .option {
  background-color: #dde8ff;
  cursor: pointer;
	color: #000;
}

.options::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}

.options::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}

.options::-webkit-scrollbar-thumb {
	background-color: #0ae;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.5, transparent), to(transparent));
}
