.Select {
  position: relative;
  display: inline-block;
}

.Select-input {
  height: 58px;
  padding: 0 13px 0 10px;
  border: 4px solid var(--grey);
  border-radius: 5px;
  font-size: 1.25rem;
  background-color: var(--bg-clr-white);
}

@media screen and (min-width: 769px) {

.Select-input {
    height: 49px;
    padding: 0 16px 0 10px;
}
  }

@media screen and (min-width: 1026px) {

.Select-input {
    height: 70px;
    padding: 0 22px 0 10px;
    font-size: 1.375rem;
}
  }

@media screen and (min-width: 1367px) {

.Select-input {
    padding: 0 22px 0 10px;
    font-size: 1.625rem;
}
  }

.Select-button {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 8px);
  padding: 0 15px;
  background-color: white;
  pointer-events: none;
}

@media screen and (min-width: 1026px) {

.Select-button {
    padding: 0 22px;
}
  }

@media screen and (min-width: 1367px) {

.Select-button {
    padding: 0 24px;
}
  }

.Select-button svg {
    width: 14px;
    height: auto;
  }

@media screen and (min-width: 769px) {

.Select-button svg {
      width: 16px;
  }
    }

@media screen and (min-width: 1026px) {

.Select-button svg {
      width: 22px;
  }
    }

.Select-button svg path {
      fill: var(--clr-primary);
    }
