.custom-select-container {
  position: relative;
  box-sizing: border-box;;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: .333;
}
.custom-select-opener {
  background-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.custom-select-opener>span {
  padding: 8px 0 8px 16px;
  white-space: nowrap;
  width: calc(100% - 36px);
  overflow: hidden;
  text-overflow: ellipsis;

  border-radius: 4px;
  font-weight: 400;
  position: relative;
  align-items: center;
  line-height: 20px;
}
.topbar .store-list .custom-select-opener::before {
  content: "";
  height: 18px;
  width: 18px;
  -webkit-mask: url(../images/material/store.svg) no-repeat 50% 50%;
  mask: url(../images/material/store.svg) no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--color-gray-2);
  position: absolute;
  left: 10px;
}
.custom-select-opener::after {
  content: "";
  height: 22px;
  width: 22px;
  -webkit-mask: url('../images/material/arrow-select.svg') no-repeat 50% 50%;
  mask: url('../images/material/arrow-select.svg') no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--color-gray-1);
  position: absolute;
  right: 0;
}
.topbar .store-list .custom-select-opener {
  border-radius: 8px;
  background-color: #fff;
}
.topbar .store-list .custom-select-opene::after {
  right: 6px;
}
.topbar .store-list .custom-select-opener {
  padding: 0 36px 0 24px;
  line-height: 28px;
  background-color: var(--color-bg-gray-60);
}
.topbar .store-list .custom-select-opener:hover {
  background-color: #fff;
}
.topbar .store-list .custom-select-opener:hover::before {
  background-color: var(--color-gray-1);
}
.topbar .store-list .custom-select-opener>span {
  width: 100%;
}
.custom-select-opener:hover,
.custom-select-opener[aria-expanded="true"] {
  background-color: var(--color-bg-gray-38);
}
.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  /* max-height: 0; */
  visibility: hidden;
  overflow: hidden;
  background-color: #fff;
  position: absolute;
  top: 120%;
  z-index: 1;
  width: 100%;
  border: 1px solid var(--color-bg-gray);
  box-shadow: var(--p-shadow-box-popup);
  border-radius: 8px;
  transition: all 0.15s ease;
  max-height: 230px;
}
.custom-select-container.is-open .custom-select-panel {
  padding: 8px 0;
  visibility: visible;
}
.custom-select-option {
  padding: 8px 16px 8px 42px;
  position: relative;
  cursor: pointer;
}
.custom-select-option.has-focus {
  background-color: var(--color-bg-gray-38);
}
.custom-select-option.is-selected::before {
  content: "";
  /* background-image: url('../images/material/check_black_24dp.svg');
  background-size: 24px 24px; */
  height: 24px;
  width: 24px;
  -webkit-mask: url('../images/material/check_black_24dp.svg') no-repeat 50% 50%;
  mask: url('../images/material/check_black_24dp.svg') no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--color-secondary);
  position: absolute;
  left: 12px;
  top: 7px;
}
.custom-select-optgroup > .custom-select-option {
  padding-left: 2em;
}
.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}
