.options {

margin: 10px 0;
width: 100%;

@media screen and (max-height: $max-height) {
  margin: -3px 0 0;
}

_:-ms-input-placeholder,
:root & {
  margin: -12px 0 0;
}

&__title {
  color: $manatee;
  font-family: $ft-open-sans;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 15px 0 5px;

  @media screen and (max-width: $mobile) {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }

  @media screen and (max-height: $max-height) {
    font-size: 13px;
  }
}

&__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

&__item {
  align-items: center;
  background: $scooter;
  border-radius: 6px;
  display: flex;
  height: 48px;
  justify-content: center;
  margin: 8px 0;
  overflow: hidden;
  width: 128px;

  @media screen and (max-width: $mobile) {
    width: calc(50% - 8px);
  }

  @media screen and (max-height: $max-height) {
    height: 35px;
  }

  &:last-child .options__link {
    line-height: 1.25;
    height: auto;
    padding: 6px 0;
  }
}

&__link {
  color: $jacarta;
  display: inline-block;
  font-family: $ft-open-sans;
  font-size: 14px;
  font-weight: bold;
  height: 100%;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  width: 128px;

  @media screen and (max-height: $max-height) {
    line-height: 35px;
    font-size: 12px;
  }
}

}