/* SELECTER */
.selecter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.select {
  display: none;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.select.active {
  display: flex;
}

.select-content {
  flex: 1 1 625px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.select-title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.select-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: center;
}

.boton {
  text-decoration: none;
  border: none;
  border-radius: 50px;
  padding: 10px;
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: #e9e9e9;
  color: black;
  cursor: pointer;
}

.select-img {
  min-width: 200px;
  max-width: 40rem;
  flex: 2 1 40rem;
}

.select-img img {
  width: 100%;
  height: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (max-width: 1254px) {
  .selecter {
    width: 100%;
  }

  .select-content {
    padding: 0;
    margin-bottom: 2rem;
  }

  .select.active {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}

.btn-selecter {
  text-align: center;
  margin-top: 20px;
  margin: 0 auto;
}

.btn-selecter .checkbox {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  border: 1px solid #a0a0a0;
  cursor: pointer;
  background-color: #9e9e9e;
}

.btn-selecter .checkbox.checked {
  background-color: #fff;
}
