.nice-select .list,
.nice-select:after {
  pointer-events: none;
  position: absolute;
}
.nice-select,
.nice-select .option {
  outline: 0;
  cursor: pointer;
  font-weight: 500;
  display: block;
}
.nice-select,
.nice-select .option.selected {
  font-weight: 500;
}
.nice-select {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  background-color: #ffc599;
  border: 0 solid #fff;
  box-sizing: border-box;
  clear: both;
  float: left;
  font-family: inherit;
  color: #000;
  font-size: 16px;
  height: 65px;
  padding-top: 2%;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left !important;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 80%;
  margin-left: 10% !important;
  margin-top: 4% !important;
  font-family: var(--thm-body-font);
}
.nice-select:hover {
  border-color: #ff872c;
}
.nice-select.open,
.nice-select:active,
.nice-select:focus {
  border-color: var(--thm-primary);
}
.nice-select:after {
  right: 17px;
  top: 50%;
  margin-top: -4px;
  display: block;
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  width: 6px;
  height: 6px;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select .option:last-child,
.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: #fde3ce;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  max-height: 400px;
  overflow-y: scroll;
  padding: 0;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}
.nice-select .list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.nice-select .list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.nice-select .list::-webkit-scrollbar-thumb {
  background-color: #151515;
  border-radius: 5px;
  border: 2px solid #151515;
}
.nice-select .list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.nice-select .list::-webkit-scrollbar-corner {
  background-color: transparent;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  position: relative;
  width: 100%;
  float: none;
  border-right: none;
  color: rgba(13, 66, 80, 0.4);
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  color: #c4c4c4;
  background-color: #151515;
}
.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;
}
