﻿.custom-select-wrapper {
  position: relative;
  user-select: none;
}
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
  height: unset;
  padding: 0;
  border: none;
  width: 200px;
}
.trigger-mobile {
  margin-left: 10px;
}
.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: #3b3b3b;
  height: 40px;
  line-height: 60px;
  cursor: pointer;
  border: none;
}
@media (min-width: 1369px) {
  .custom-select__trigger {
    justify-content: flex-start;
  }
}
@media (min-width: 1369px) {
  .custom-select__trigger {
    background: #ffffff;
  }
}
.custom-select__trigger span {
  margin-right: 1em;
}
.custom-select__trigger.start {
  justify-content: flex-start;
}
.custom-options {
  position: absolute;
  display: none;
  width: 100%;
  top: -25px;
  left: 0;
  background-color: #fff;
  transition: all 0.5s;
  pointer-events: none;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.custom-options.open {
  pointer-events: all;
  display: block;
  z-index: 10;
}
.custom-option a {
  color: #181818;
  position: relative;
  display: block;
  padding: 0 0.5em;
  font-weight: 300;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.5s;
  font-size: 0.9em;
}
.custom-option a:hover {
  text-decoration: none;
  cursor: pointer;
  background-color: #DCDCDC;
}
.arrow {
  position: relative;
  height: 10px;
  width: 10px;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}
.arrow::before {
  left: 5px;
  transform: rotate(45deg);
  background-color: #d87c17;
}
.arrow::after {
  left: -5px;
  transform: rotate(-45deg);
  background-color: #d87c17;
}
.open .arrow::before {
  left: 5px;
  transform: rotate(-45deg);
}
.open .arrow::after {
  left: -5px;
  transform: rotate(45deg);
}