
@font-face {
  font-family: 'Ortica';
  src: url('../fonts/Ortica-Light.otf');
  font-style: normal;
}

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: 'Ortica';
  font-size: 3vw;
}

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

.select-selected {
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 15px -3px #000000;
  box-shadow: 0px 0px 15px -3px #000000;
  border-radius: 2em;
  border: none;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-block-end: 3em;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: red transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  top: 25%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: transparent transparent red transparent;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: black;
  padding: 8px 8px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  color: black;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 15px -3px #000000;
  box-shadow: 0px 0px 15px -3px #000000;
  border-radius: 1em;
  border: none;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  color: red;
  padding: 8px ;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

h2{
  font-family: 'Ortica';
  font-size: 3vw;
  line-height: 110%;
  color: black;
  text-align: center;
  font-weight: normal;
  margin-block-start: 0em;
  margin-block-end: 1em;
  }

  h1{
    font-family: 'Ortica';
    font-size: 6vw;
    line-height: 110%;
    color: black;
    text-align: center;
    font-weight: normal;
    margin-block-start: 0em;
    margin-block-end: 0em;
    }

    h3{
      font-family: 'Ortica';
      font-size: 6vw;
      line-height: 110%;
      color: black;
      text-align: center;
      font-weight: normal;
      padding-top: 10px;
      padding-bottom: 30px;
      }
