/*the container must be positioned relative:*/

@font-face {
  font-family: DMSans-Bold;
  src: url(../DM_Sans/DMSans-Bold.ttf);
}

@font-face {
  font-family: DMSans-Regular;
  src: url(../DM_Sans/DMSans-Regular.ttf);
}

@font-face {
  font-family: DMSans-Medium;
  src: url(../DM_Sans/DMSans-Medium.ttf);
}

@font-face {
  font-family: Manrope-Regular;
  src: url(../DM_Sans/Manrope-Regular.ttf);
}

@font-face {
  font-family: New York Extra Large Regular;
  src: url(../DM_Sans/NewYorkExtraLargeRegular.ttf);
}

.custom-selectt {
  position: relative;
  /* width: 375px; */
  width: 20vw;
  /* height: 60px; */
  background: #ffffff;
  box-shadow: 14px 17px 44px rgb(0 0 0 / 7%);
  border-radius: 35px;
  border: none;
  padding: 19px 24px;
  color: rgba(3, 13, 32, 0.4);
}

.custom-selectt select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  /* background-color: DodgerBlue; */
}

/*style the arrow inside the select element:*/

.select-selected:after {
  position: absolute;
  content: "";
  top: 28px;
  right: 35px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-color: #1d65f1 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #1d65f1 transparent;
  top: 18px;
}

/*style the items (options), including the selected item:*/

.select-items div,
.select-selected {
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  color: rgba(3, 13, 32, 0.7);
}

/*style items (options):*/

.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 35px;
  margin-top: 10px;
}

.select-items div {
  padding-left: 24px;
  margin-bottom: 3px;
}

.select-items div:first-child {
  margin-top: 24px;
}

.select-items div:last-child {
  margin-bottom: 24px;
}

/*hide the items when the select box is closed:*/

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 670px) {
  .custom-selectt {
    width: 76%;
  }
  .contact-us input {
    width: 76%;
  }
}
