 .listbox_container { 
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}
.custom_select_ul {
	border-top: 0;
	max-height: 23rem;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	margin: -1px 0 0 0;
	padding: 0;
	background: #fff;
	border: 1px solid rgba(23, 71, 158, 0.65);
	z-index: 1051;
}

.listbox_container ul li {
	text-overflow: ellipsis;
    box-sizing: border-box;
    text-align: left;
}
.listbox_container ul li + li {
	border-top: 1px solid rgba(23, 71, 158, 0.65);
}

.listbox_container [role="option"] {
  display: block;
  padding: 0.9rem 1rem;
  position: relative;
  line-height: 2rem;
  cursor: pointer;
}

.listbox_container [role="option"].focused, .listbox_container [role="option"]:hover{
  background: #f3f6fa;
 }

.listbox_container [role="option"][aria-selected="true"]::before {
   position: absolute;
   left: 0.5em;
} 

.btn_starter {
	width:100%;
	height:5rem;
	border-radius: 0;
	font-size: 100%;
	text-align: left;
	padding: 0.9rem 4rem 0.9rem 1.5rem;
	position: relative;
	background-color: #fff;
	border: 1px solid rgba(23, 71, 158, 0.65);
	color: #000;
	cursor: pointer;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 3.1rem;
}
.btn_starter:focus {
	outline: double 3px rgba(23, 71, 158, 0.65);
	border:none;
}

.listboxPlaceholder{
    color: #4a4a4a; /* rgb(74, 74, 74) */
    color: var(--darkgrey-color); 
    font-style: italic;
}
.custom_select_ul:focus {
	outline: solid 1px rgba(23, 71, 158, 0.65);
}


.btn_starter .listbox__arrow b {
    position: absolute; right: 2.5rem; top: 1.1rem;
    font-size: 2.5rem;
    height:0; width: 0;
    color: #17479e;
    color: var(--primary-blue-color);
}

.btn_starter .listbox__arrow b::after {
	font-family: 'icons2020' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  	content: "\e92b";
}
.btn_starter[aria-expanded="true"] .listbox__arrow b::after {
  	content: "\e92e";
}

.toolbar {
  font-size: 0;
}

.toolbar-item {
  border: 1px solid #aaa;
  background: #ccc;
}

.toolbar-item[aria-disabled="false"]:focus {
  background-color: #eee;
}

.offscreen {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  font-size: 14px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Pour TAB et DSK */
@media screen and (min-width: 767.5px) {
	.listbox_container{
      width: auto;
    }
  
    .custom_select_ul {
      width: 100%;
      z-index: 100;
    }
}

/* Pour MOB */
@media screen and (max-width: 768px) {
	.listbox_container{
		display:none;
	}
}

 