/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
	.select-selected {
		font-size: 13px;
	}
}

/* Style the arrow inside the select element: */
.select-selected:before{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 132px;
    height: 100%;
    background-color: #ba4e6f;
}
@media screen and (max-width: 767px) {
    .select-selected:before{
        width: 61px;
    }
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 48px;
  width: 26px;
  height: 22px;
  margin-top: -8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../img/arrow.png');
  transition: transform .4s ease;
}
@media screen and (max-width: 767px) {
    .select-selected:after{
        width: 13px;
        height: 11px;
        margin-top: -4.5px;
        right: 25px;
    }
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #000;
  padding: 41px 20px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
	.select-items div,.select-selected {
	    padding: 16.5px 10px;
        font-size: 15px;
	}
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  text-align: center;
  transition: all .4s ease;
  transform: scaleY(1);
  transform-origin: left top;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
	.select-items {
		font-size: 15px;
	}
}


/* Hide the items when the select box is closed: */
.select-hide {
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0);
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
