.select-box {
  position: relative;
}

.select-box input {
  width: 100%;
}


.selected-option {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:100%;
	gap: 1.66rem;
}

.selected-option div {
    position: relative;
    width: 8rem;
    text-align: center;
    cursor: pointer;
		display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.833rem;
		  padding: 0 1.38rem;

}

.selected-option svg.iconify  {
	width: 2.7rem;
  height: 1.8rem;
}

.select-box .options {
    z-index: 100;
    width: 100%;
    background-color: #ddd0;
    border: 1px solid #4c4c4c;
    border-radius: .69rem;
    margin-top: .56rem;
    transition: border-color .3s;
}

.select-box .options.active {
  display: block;
}


input.search-box {
  background-color: black;
  color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1.4rem 1rem;
	border: 1px solid #4c4c4c;
}

input.search-box:hover {
	border: 1px solid white;
}

.select-box ol {
  list-style: none;
  max-height: 23rem;
  overflow: overlay;
	padding: 1.25rem 1.39rem .42rem;
}

.select-box ol::-webkit-scrollbar {
  width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
  width: 0.4rem;
  height: 3rem;
  background-color: #ccc;
  border-radius: 0.4rem;
}

.select-box ol li {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #9c9c9c;
  margin-bottom: .83rem;
  font-size: 1.11rem;
  transition: color .3s;
}

.select-box ol li.hide {
  display: none;
}

.select-box ol li:hover {
  background-color: #f5f5f505;
}

.select-box ol li .country-name {
  margin-left: 0.4rem;
}