/*
 * Custom Select jQuery Plugin Base
 */
.my-select-topmenu {
  position: relative;
	font-family:InterV;
	width:240px;
}
.my-select-topmenu.w200 {
	width:200px;
}

.my-select-topmenu.my-select-topmenu--bolder  {
	font-family:InterV;
	font-weight:600;
}
.my-select-topmenu__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  text-align: left;
  /*white-space: nowrap;
  text-overflow: ellipsis;*/
  white-space: normal;
  text-overflow: unset;
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.my-select-topmenu__option-wrap {
  position: relative;
}
.my-select-topmenu__input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  border-width: 1px 0;
  border-style: solid;
  border-radius: 0;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.my-select-topmenu__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-topmenu--dropup .my-select-topmenu__dropdown {
  top: auto;
  bottom: 100%;
}

/*
 * Custom Select jQuery Plugin Theme
 */
.my-select-topmenu__option {
  color: #000;
	border-radius: 15px; 
	font-family:InterV;
	font-size: 15px; 
	line-height: 15px; 
	background-color: #fff;
	border: 1px solid #fff;
	letter-spacing: -0.02em;
	padding: 20px;
}

.my-select-topmenu__option:focus {
  outline: none;
}
.my-select-topmenu__option:hover, .my-select-topmenu__option:focus {
  background-color: #F7F7F7;
	border: 1px solid #000; 
}
.my-select-topmenu__option--value {
	padding: 11px 20px;
 	white-space: nowrap;
  text-overflow: ellipsis;
	padding-right:40px; 
}
.my-select-topmenu__option--value::after {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 8px;
  right: 15px;
	background: url('../images/chevron_down.svg') center center no-repeat transparent; 
  content: "";
}
.my-select-topmenu--active .my-select-topmenu__option--value::after {
	background: url('../images/chevron_up.svg') center center no-repeat transparent; 
}
.my-select-topmenu--active .my-select-topmenu__option--value {
  border-bottom-color: transparent;
}
.my-select-topmenu--active .my-select-topmenu__option--value:hover, .my-select-topmenu--active .my-select-topmenu__option--value:focus {
  background-color: #F7F7F7;
	border: 1px solid #000; 
}
.my-select-topmenu--dropup.my-select-topmenu--active .my-select-topmenu__option--value {
  border-top-color: transparent;
  border-bottom-color: #e6e6e6;
  border-radius: 0 0 0.25rem 0.25rem;
}

.my-select-topmenu__option--selected {
  background-color: #fcfcfc;
}
.my-select-topmenu__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}
.my-select-topmenu__option[disabled]:hover, .my-select-topmenu__option[disabled]:focus {
  background-color: transparent;
}
.my-select-topmenu__option-wrap {
  overflow-y: auto;
  max-height: 11.25rem;
}
.my-select-topmenu__option-wrap::-webkit-scrollbar {
  width: 16px;
}
.my-select-topmenu__option-wrap::-webkit-scrollbar-thumb {
  background-color: #e6e6e6;
  background-clip: padding-box;
  border-width: 0 4px;
  border-style: solid;
  border-color: transparent;
}
.my-select-topmenu__input {
  position: relative;
  z-index: 1;
  height: 2.25rem;
  margin-top: -1px;
  padding: 0 0.75rem;
  border-color: #e6e6e6;
  transform: translateY(1px);
	font-size: 14px;
	color: #212121;
}

.my-select-topmenu__dropdown .my-select-topmenu__option { font-family: InterV; font-size: 15px; line-height: 18px; letter-spacing: -0.01em; padding: 11px 0; border-top: none; border-right: none; border-left: none; border-bottom: 1px solid #dfdfdf; border-radius: 0px; color: #3a3a3a; }
.my-select-topmenu__dropdown .my-select-topmenu__option:last-child { border-bottom: none; }
.my-select-topmenu__dropdown .my-select-topmenu__option:hover { background-color: #fff; }
.my-select-topmenu__option span { text-align: right; display: block; float: right; }
.my-select-topmenu__option span span.sel_red { float: none; display: inline; color:#EC635D; }
.my-select-topmenu__input:focus {
  outline: none;
}
.my-select-topmenu--dropup .my-select-topmenu__input {
  border-top-width: 0;
  margin-top: 0;
  transform: translateY(0);
}
.my-select-topmenu__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-topmenu--dropup .my-select-topmenu__dropdown {
  bottom: calc(100% - 1px);
  border-width: 1px 1px 0;
  border-radius: 0.25rem 0.25rem 0 0;
}

/*# sourceMappingURL=jquery.my-select-topmenu.css.map */
