.nice-select {
  -webkit-tap-highlight-color: transparent;
  position: relative;
  color:#0C2340;
  border-radius: 0px;
  border:1px solid #8F704B;
  background-color: #fff;
  padding: 3px 40px 3px 15px;
  height: 40px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
}



.nice-select:before {
  content: '';
  position: absolute;
  right: 0px;
  top: 0;
  background-image: url('../images/arrow-down.svg');
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 100%;
  cursor: pointer;

}

.nice-select span.current
{
  /* color:#464646; */
  color:#0C2340;
  vertical-align: middle;
  font-size: 19px;
font-family: 'CenturyGothic-Bold';
  line-height: 24px;
  height: 32px;
  overflow: hidden;
  display: inline-block;
}


.nice-select.open:before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.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);
  display: block;
}
.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 {
  color:#0C2340;
  background: #fff;
  border-radius: 0px;
  border:1px solid #8F704B;
  border-bottom: 0px;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  display: block;
  top: 100%;
  width: 101%;
  left: -1px;
  margin: 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-transform: scale(1) translateY(-21px);
  -ms-transform: scale(1) translateY(-21px);
  transform: scale(1) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 4;
  /* z-index: -1; */
}


.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 30px;
  list-style: none;
  display: block;
  min-height: 30px;
  outline: none;
  padding: 5px 10px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-bottom:1px solid #8F704B;
  color:#0C2340;
  font-size: 19px;
  line-height: 30px;
  width: 100% !important;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f7f7f7;
}
.nice-select .option.selected {
  font-weight: 600;
  /* color: #22D2C5; */
  color:#8F704B !important;
}
.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;
}
.nice-select .list {
  max-height: 290px;
  overflow-y: auto;
}
@media all and (max-width: 1400px) {
.nice-select span.current
{
  font-size: 16px;
}
}
@media all and (max-width: 767px) {
  .nice-select span.current
  {
    line-height: 30px;
  }
}
