@font-face {
  font-family: "proxima-nova";
  src: url("https://cdn5.onboard.org/assets/post-ischgl/fonts/proxima-nova-400.woff2");
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "proxima-nova", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
}

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

.ob-iframe {
  min-height: 500px;
}

.wrapper {
  max-width: 1000px;
  margin: 24px auto 48px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.filter-container {
  position: relative;
  width: 240px;
  border-bottom: 1px solid #000;
}

.filter-btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 6px 28px 6px 0;
  font-family: "proxima-nova", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-align: start;
  text-transform: uppercase;
  color: rgb(83, 73, 68);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 14px;
}

.panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 90%;
  background: #fff;
  border: 1px solid rgb(221, 221, 221);
  padding: 8px 6px;
  display: grid;
  gap: 6px;
  margin-top: 6px;
  z-index: 20;
  font-weight: 400;
  z-index: 10000; 
}

.panel[hidden] {
  display: none !important;
}

.option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  cursor: pointer;
}

.option:last-child {
  border-bottom: 0;
}

.option input {
  width: 16px;
  height: 16px;
  accent-color: rgb(83, 73, 68);
  cursor: pointer;
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 16px;
  }
  .filter-btn {
    font-size: 15px;
    background-size: 12px;
  }
}
@media (max-width: 480px) {
  .wrapper {
    padding: 0 12px;
  }
  .filter-btn {
    font-size: 14px;
    background-size: 11px;
  }
}

