/*
 * Custom Select jQuery Plugin Base
 */
.my-select {
  position: relative;
	font-family:InterV;
}
.my-select.my-select--bolder  {
	font-family:InterV;
	font-weight:600;
}
.my-select__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.my-select__option-wrap {
  position: relative;
}
.my-select__input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 17px 20px;
	border-radius: 12px;
  font-family: InterV;
  font-size: 18px;
	font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.02em;
	background-color: #F7F7F7;
  border: none;
	margin: 10px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.my-select__dropdown {
	max-height: 500px; 
	overflow-y: scroll;
	
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  top: 100%;
  left: 0;
	box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.my-select--dropup .my-select__dropdown {
  top: auto;
  bottom: 100%;
}

/*
 * Custom Select jQuery Plugin Theme
 */
.my-select__option {
  color: #000;
	border-radius: 16px; 
	font-family:InterV;
	font-size: 16px; 
	line-height: 16px; 
	background-color: #fff;
	border: 1px solid #fff;
	letter-spacing: -0.02em;
	padding: 20px;
}

.my-select__option:focus {
  outline: none;
}
.my-select__option:hover, .my-select__option:focus {
  background-color: #F7F7F7;
	border: 1px solid #000; 
}
.my-select__option--value {
	padding: 15px 20px;
}
.my-select__option--value::after {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 13px;
  right: 15px;
	background: url('../images/chevron_down.svg') center center no-repeat transparent; 
  content: "";
}
.my-select--active .my-select__option--value::after {
	background: url('../images/chevron_up.svg') center center no-repeat transparent; 
}
.my-select--active .my-select__option--value {
  border-bottom-color: transparent;
}
.my-select--active .my-select__option--value:hover, .my-select--active .my-select__option--value:focus {
  background-color: #F7F7F7;
	border: 1px solid #000; 
}
.my-select--dropup.my-select--active .my-select__option--value {
  border-top-color: transparent;
  border-bottom-color: #e6e6e6;
  border-radius: 0 0 0.25rem 0.25rem;
}

.my-select__option--selected {
  background-color: #fcfcfc;
}
.my-select__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}
.my-select__option[disabled]:hover, .my-select__option[disabled]:focus {
  background-color: transparent;
}
.my-select__option-wrap {
  overflow-y: auto;
  max-height: 400px;
}
.my-select__option-wrap::-webkit-scrollbar {
  width: 16px;
}
.my-select__option-wrap::-webkit-scrollbar-thumb {
  background-color: #e6e6e6;
  background-clip: padding-box;
  border-width: 0 4px;
  border-style: solid;
  border-color: transparent;
}
.my-select__input {
  position: relative;
  z-index: 1;
  transform: translateY(1px);
}

.my-select__dropdown .my-select__option { font-family: InterTightBold; font-size: 16px; line-height: 16px; letter-spacing: -0.01em; padding: 20px 0; border-top: none; border-right: none; border-left: none; border-bottom: 1px solid #dfdfdf; border-radius: 0px; color: #3a3a3a; }
.my-select__dropdown .my-select__option:last-child { border-bottom: none; }
.my-select__dropdown .my-select__option:hover { background-color: #fff; }
.my-select__option span { text-align: right; display: block; float: right; }

.my-select__input:focus { outline: none; }
.my-select--dropup .my-select__input {
  transform: translateY(0);
}
.my-select__dropdown {
  overflow-x: hidden;
	overflow-y: scroll;
  z-index: 2;
  top: calc(100% - 1px);
  background-color: #fff;
	border: 1px solid #737477;
	border-radius: 16px;
	padding: 0 20px; 
}
.my-select--dropup .my-select__dropdown {
  bottom: calc(100% - 1px);
  border-width: 1px 1px 0;
  border-radius: 0.25rem 0.25rem 0 0;
}

/*# sourceMappingURL=jquery.my-select.css.map */
