.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%; }

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
  border: none; }

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 300;
  color: #3b3b3b;
  height: 45px;
  line-height: 60px;
  background: #F9F9F9;
  cursor: pointer;
  border-bottom: solid 1px; }
  .custom-select__trigger span {
    font-size: 20px;
    line-height: 23px;
    color: #9D1C2F; }

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 2px solid #394a6d;
  border-top: 0;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  background: #F9F9F9; }

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all; }

.custom-option {
  position: relative;
  display: block;
  padding: 0 22px 0 22px;
  font-size: 22px;
  font-weight: 300;
  color: #3b3b3b;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.5s; }

.custom-option:hover {
  cursor: pointer;
  background-color: #b2b2b2; }

.custom-option.selected {
  color: #ffffff;
  background-color: #9D1C2F; }

.arrow {
  position: relative;
  height: 6px;
  width: 6px; }

.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 1px;
  height: 100%;
  transition: all 0.5s; }

.arrow::before {
  left: -3px;
  transform: rotate(45deg);
  background-color: #D6BB9B; }

.arrow::after {
  left: 1px;
  transform: rotate(-45deg);
  background-color: #D6BB9B; }

.open .arrow::before {
  left: -1px;
  transform: rotate(-45deg); }

.open .arrow::after {
  left: 3px;
  transform: rotate(45deg); }
