.select-box {
  position: relative;

  width: 26rem;
  /* margin: 7rem auto; */
}

.select-box input {
  width: 100%;
  padding: 1rem .6rem;
  font-size: 1.1rem;
  
  border: .1rem solid transparent;
  outline: none;
}

input[type="tel"] {
  border-radius: 0 .5rem .5rem 0;
}

.select-box input:focus {
  border: .1rem solid hsl(var(--base));
}

.selected-option {
  background-color: #eee;
  border-radius: .5rem;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-option div {
  position: relative;
  width: 10rem;
  padding: 0 2.8rem 0 .5rem;
  text-align: center;
  cursor: pointer;
}

.selected-option div::after {
  position: absolute;
  content: "";
  right: 1.8rem;
  top: 34%;
  transform: translateY(-50%) rotate(45deg);
  width: .8rem;
  height: .8rem;
  border-right: .12rem solid hsl(var(--black));
  border-bottom: .12rem solid hsl(var(--black));
  transition: .2s;
  FONT-WEIGHT: 300;
  z-index: 7;
}
.selected-option div.active::after{
  transform: translateY(-50%) rotate(225deg);
}
.selected-option svg {
  margin-right: 7px;
}

.select-box .options {
  position: absolute;
  top: 4rem;
  
  width: 100%;
  background-color: #fff;
  border-radius: .5rem;

  display: none;
  z-index: 6;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

.select-box .options::before {
  position: absolute;
  content: "";
  left: 1rem;
  top: -1.2rem;

  width: 0;
  height: 0;
  border: .6rem solid transparent;
  border-bottom-color: hsl(var(--base));
}

input.search-box {
  background-color: hsl(var(--base));
  color: #fff;
  border-radius: .5rem .5rem 0 0;
  padding: 10px 10px;
}
input.search-box::placeholder {
  color: #fff;
}
.select-box ol {
  list-style: none;
  max-height: 23rem;
  overflow: overlay;
}

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

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

.select-box ol li {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

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

.select-box ol li:not(:last-child) {
  border-bottom: .1rem solid #eee;
}

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

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

.select-box-n {
  position: relative;

  width: 26rem;
  /* margin: 7rem auto; */
}

.select-box-n input {
  width: 100%;
  padding: 1rem .6rem;
  font-size: 1.1rem;
  
  border: .1rem solid transparent;
  outline: none;
}

.numberInputWhatsapp {
  border-radius: 0 .5rem .5rem 0;
}

.select-box-n input:focus {
  border: .1rem solid hsl(var(--base));
}

.floater-selected-option {
  background-color: #eee;
  border-radius: .5rem;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floater-selected-option div {
  position: relative;
  width: 10rem;
  padding: 0 2.8rem 0 .5rem;
  text-align: center;
  cursor: pointer;
}

.floater-selected-option div::after {
  position: absolute;
  content: "";
  right: 1.8rem;
  top: 34%;
  transform: translateY(-50%) rotate(45deg);
  width: .8rem;
  height: .8rem;
  border-right: .12rem solid hsl(var(--black));
  border-bottom: .12rem solid hsl(var(--black));
  transition: .2s;
  FONT-WEIGHT: 300;
  z-index: 7;
}
.floater-selected-option div.active::after{
  transform: translateY(-50%) rotate(225deg);
}
.floater-selected-option svg {
  margin-right: 7px;
}

.select-box-n .choices {
  position: absolute;
  top: 4rem;
  
  width: 100%;
  background-color: #fff;
  border-radius: .5rem;

  display: none;
  z-index: 6;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.select-box-n .choices.active {
  display: block;
}

.select-box-n .choices::before {
  position: absolute;
  content: "";
  left: 1rem;
  top: -1.2rem;

  width: 0;
  height: 0;
  border: .6rem solid transparent;
  border-bottom-color: hsl(var(--base));
}

input.query-box {
  background-color: hsl(var(--base));
  color: #fff;
  border-radius: .5rem .5rem 0 0;
  padding: 10px 10px;
}
input.query-box::placeholder {
  color: #fff;
}
.select-box-n ol {
  list-style: none;
  max-height: 23rem;
  overflow: overlay;
}

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

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

.select-box-n ol li {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

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

.select-box-n ol li:not(:last-child) {
  border-bottom: .1rem solid #eee;
}

.select-box-n ol li:hover {
  background-color: lightcyan;
}

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