
.nice-select {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  line-height: 40px;
  outline: none;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}



.nice-select:after {
  border-bottom: 0px solid #999;
  border-right: 0px solid #999;
  content: '';
  display: block;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 6px;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
  background: url(/wp-content/themes/wp-bootstrap-starter-master/img/arrow-lang.svg);
  width: 8px;
  height: 6px;
  background-size: contain;
}
.nice-select > span {
  padding-left: 4px;
}

.nice-select.open:after {
  transform: rotate(-180deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--yellow-light);
  box-shadow: none;
  box-sizing: border-box;
  margin-top: 0px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 22px;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: -1;
  border: 2px solid #E3D2B0;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  padding: 26px 0 14px;
  width: 48px;
  align-items: center;
  left: -2px;
  gap: 4px;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  line-height: 1;
  list-style: none;
  outline: none;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  transition: all 0.2s;
  font-size: 16px;
  color: #000;
  min-height: auto;
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid #B5B5B5;
  padding-bottom: 2px;
}

.nice-select .option:hover, 
.nice-select .option.focus, 
.nice-select .option.selected.focus {
  background-color: transparent;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}
li.option.selected.focus {
  display: none;
}
@media screen and (max-width: 767px) {

  .nice-select > span {
    padding-left: 0px;
  }
  .nice-select:after {
    display: none;
  }

  .nice-select {
    width: 32px;
    height: 32px;
    font-size: 12px;
    font-weight: 600;
    justify-content: center;
  }
  .nice-select .option {
    font-size: 12px;
  }
  .nice-select .list {
    top: 16px;
    width: 32px;
    padding: 20px 0 14px;
  }
  .lang {
    margin-left: auto;
  }
  .btn-mobile {
    margin-left: 16px;
  }
}