@font-face {
  font-family: "Louize";
  src: url("https://cdn5.onboard.org/assets/sonnwies/fonts/Louize-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibre";
  src: url("https://cdn5.onboard.org/assets/sonnwies/fonts/Calibre-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  color: #1e1e1e;
  font-family: "Calibre", Arial, sans-serif;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 80px 72px;
}

.field {
  min-width: 0;
}

.label {
  display: block;
  margin-bottom: 14px;
  font-family: "Calibre", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice {
  position: relative;
}

.choice::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 11px;
  height: 11px;
  border-right: 2px solid #1e1e1e;
  border-bottom: 2px solid #1e1e1e;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.select {
  display: block;
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding: 0 64px 0 24px;
  border: 1px solid #aaa59f;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #1e1e1e;
  font-family: "Louize", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.select:focus {
  border-color: #1e1e1e;
}

.ob-iframe {
  display: block;
}

@media (max-width: 720px) {
  .filter {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 24px 48px;
  }

  .label {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .select {
    min-height: 58px;
    padding-right: 54px;
    padding-left: 18px;
    font-size: 18px;
  }

  .choice::after {
    right: 22px;
  }
}