

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

.custom-select {
  display: flex;
  flex-direction: column;
  border-width: 0 2px 0 2px;
    min-width: 100%;
    text-align: left;
    font-size: 20px;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1% 8% 0%;
  font-size: 1vw;
  font-weight: 300;
  color: #3b3b3b;
      height: 50px;
    line-height: 50px;
  background: #ffffff;
  cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
}

.custom-options {
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  right: 0;
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
    margin-top: 46px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    max-height: 245px;
    overflow-y: auto;
   -webkit-box-shadow: 0px 3px 5px 0px rgba(97,91,97,1);
-moz-box-shadow: 0px 3px 5px 0px rgba(97,91,97,1);
box-shadow: 0px 3px 5px 0px rgba(97,91,97,1);
}

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

.custom-option {
  position: relative;
  display: block;
  padding: 4px 18px 0;
  font-size: 1vw;
  font-weight: 300;
  color: #3b3b3b;
  line-height: 1.4vw;
  cursor: pointer;
  transition: all 0.5s;
    border-bottom: 1px solid #cccccc;
}
.custom-option:last-child {
    border: 0px;
}
.custom-option:hover {
  cursor: pointer;
  background-color: #7a1354;
    color: #ffffff;
}

.custom-option.selected {
  background-color: #7a1354;
    color: #ffffff;
}

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

.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: #394a6d;
}

.arrow::after {
  left: 5px;
  transform: rotate(45deg);
  background-color: #394a6d;
}

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

.open .arrow::after {
  left: 5px;
  transform: rotate(-45deg);
}
@media (max-width: 1400px) {
.custom-options {
    margin-top: 38px;
}
}
@media (max-width: 1366px) and (max-height: 700px) {
.custom-select__trigger {
    font-size: 1rem !important;
    height:40px;
    line-height: 40px;
}
.custom-option {
}    
}
@media (max-width: 1400px) {
.custom-select__trigger {
    font-size: 2vw;
	line-height: 3vw;
	}
.custom-option {
    font-size: 2vw;
    line-height: 3vw;
}
.custom-options {
    margin-top: 50px;
}	
	
}
@media (max-width: 640px) {
    .custom-select__trigger {
        font-size: 4vw;
        line-height: 5vw;
    }
	.custom-option {
    font-size: 4vw;
    line-height: 5vw;
}
.custom-options {
    margin-top: 48px;
}		
}
