.explore-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: center;
}
.explore-container .title-explore h2 {
  color: #1D1D1B;
  font-size: 32px;
  font-family: Karla;
  font-weight: 700;
}
.explore-container .filter-explore {
  padding: 48px 72px;
  border-radius: 28px;
  border: 1px #6D6D6D solid;
}
.explore-container .button-explore {
  justify-content: center;
  padding-top: 48px;
}
.explore-container .button-explore button {
  padding: 16px 72px;
  background: #00909E;
  border-radius: 12px;
  border: 2px #1D1D1B solid;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  color: white;
  font-size: 20px;
  font-family: Karla;
  font-weight: 700;
}

.con__explore {
  display: flex;
  flex-direction: row;
  gap: 35px;
  flex-wrap: wrap;
}
.con__explore .filter-col {
  width: 200px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
}

.filter-col .title {
  text-align: center;
  color: #1D1D1B;
  font-size: 20px;
  font-family: Karla;
  font-weight: 700;
  line-height: 40px;
}

.select {
  position: relative;
  min-width: 200px;
}
.select svg {
  position: absolute;
  right: 12px;
  top: calc(50% - 3px);
  width: 10px;
  height: 6px;
  stroke-width: 1px;
  stroke: #6D6D6D;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.select select {
  -webkit-appearance: none;
  padding: 5px 25px 5px 9px;
  width: 100%;
  border: 1px #6D6D6D solid;
  border-radius: 5px;
  background: white;
  box-shadow: 0 1px 3px -2px #9098A9;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  transition: all 150ms ease;
}
.select select:required:invalid {
  color: #5A667F;
}
.select select option {
  color: #223254;
  font-size: 14px;
  color: #1D1D1B;
  font-family: Karla;
  font-weight: 400;
  line-height: 19.6px;
  padding: 12px;
  word-wrap: break-word;
}
.select select option[value=""][disabled] {
  display: none;
}
.select select:focus {
  outline: none;
  border-color: #6D6D6D;
  box-shadow: 0 0 0 2px rgba(0, 144, 158, 0.1960784314);
}
.select select:hover + svg {
  stroke: #00909E;
}

.btn-filter {
  cursor: pointer;
}

.sprites {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

.custom-select {
  position: relative;
  border: 1px solid #6d6d6d;
  border-radius: 4px;
  text-align: left;
  padding: 0 8px;
}
.custom-select svg {
  position: absolute;
  right: 0;
  top: 4px;
  width: 30px;
  height: 18px;
  stroke: #6d6d6d;
  stroke-width: 2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.custom-select svg:hover {
  stroke: #00909E;
}
.custom-select select {
  display: none;
  margin-top: 10px;
}

.select-items {
  position: absolute;
  background-color: #fff;
  top: 120%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #6d6d6d;
  border-radius: 4px;
}
.select-items div {
  color: #1D1D1B;
  padding: 8px 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
  text-align: left;
}

.select-selected {
  color: #1D1D1B;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
}

.select-hide {
  display: none;
}

.select div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=explore-entry.css.map */