.selectric {
  display: flex;
  align-items: center;
  height: 42px;
  border-radius: 50em;
  background-color: transparent;
  padding: 8px 20px 8px 19px;
  border: 1px solid var(--color6);
}

.selectric .label {
  margin: 0;
  height: auto;
  font-size: 14px;
  line-height: 20px;
  color: var(--color23);
  font-weight: 500;
  letter-spacing: 0.42px;
}

.selectric-items {
  top: calc(100% + 7px);
  min-width: 170px;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 18px;
  background-color: var(--color0);
  border-width: 0;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(115, 115, 115, 0.4);
}

.selectric-above .selectric-items {
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.07);
}

.selectric-items li {
  margin-bottom: 8px;
  padding: 5px 19px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color9);
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  display: box;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -ms-line-clamp: 1;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.selectric-items li:last-child {
  margin-bottom: 0;
}

.selectric-items li:hover {
  background-color: transparent;
  color: var(--color4);
}

.selectric-items li.highlighted {
  background-color: transparent;
  color: var(--color1);
}

.selectric-items li.selected {
  color: var(--color4);
  background-color: transparent;
}

.selectric-button {
  margin-top: 2px;
  margin-left: auto;
  padding-left: 8px;
  line-height: 0;
}

.selectric-open {
  z-index: 10;
}

.selectric-icon {
  display: inline-block;
  line-height: 0;
  min-width: 10px;
  width: 10px;
  height: 7px;
  background: url("/images/selectric/arrow-bottom-icon.svg") no-repeat 0 0;
  background-size: 100% auto;
  transition: transform 0.2s ease-in-out 0s;
}

.selectric-hover .selectric {
  border-color: var(--color6);
}

.selectric-focus .selectric {
  border-color: var(--color6);
}

.selectric-open .selectric {
  border-color: var(--color6);
}

.selectric-open .selectric-button {
  margin-top: -1px;
}

.selectric-open .selectric-icon {
  transform: rotate(-180deg);
}

.selectric-items .select-disable {
  display: none;
}

.selectric-items .selectric-hidden {
  display: none;
}

.select-simple .selectric {
  border-width: 0;
  background-color: var(--color1);
}

@media screen and (max-width: 992px) {
  .selectric {
    padding-top: 7px;
    padding-left: 16px;
    padding-right: 14px;
  }
  .selectric .label {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
  .selectric-items li {
    margin-bottom: 3px;
    font-size: 13px;
    line-height: 18px;
  }
}
@media screen and (max-width: 770px) {
  .selectric {
    padding-left: 18px;
    padding-right: 15px;
  }
  .selectric-items {
    display: block;
    position: fixed;
    top: auto;
    bottom: -100%;
    left: 0;
    z-index: 1000;
    width: 100% !important;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    transition: bottom 0.3s ease-in-out;
  }
  .selectric-above .selectric-items {
    top: auto;
    bottom: -100%;
  }
  .selectric-items .selectric-hidden {
    display: block;
    border-bottom-width: 0;
    padding-top: 0;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 16px;
  }
  .selectric-items li {
    margin-bottom: 0;
    padding: 7px 0;
    font-size: 15px;
    line-height: 26px;
  }
  .selectric-button {
    padding-left: 5px;
  }
  .selectric-open {
    z-index: 1200;
  }
  .selectric-open:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .selectric-open .selectric-items {
    bottom: 0;
    padding-bottom: 25px;
  }
}