/* linea */

.nav {
  margin: 0px 0.5rem;
}

.container input {
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  width: 30px;
  height: 30px;
  border-radius: 3px;
}

.line {
  width: calc(100% - 000px);
  height: 3px;
  left: 4px;
  background: #488bffd3;
  position: absolute;
  top: 68%;
  transform: translateY(-50%);
  transition: 0.7s transform cubic-bezier(0, 1, 0.33, 1.2), background 0.4s;
}

.line-indicator {
  transform: translateY(-50%) rotate(90deg);
}

.container input:checked ~ .line-indicator {
  transform: translateY(-50%);
}
/* buscador */
.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 190px;
}

.input {
  width: 100%;
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #fff;
  border-color: rgba(16, 199, 255, 0.4);
  color: #000000;
  transition: 0.3s ease;
  margin-right: 3%;
}

.input::placeholder {
  color: #717177;
}

.input:focus,
.input:hover {
  outline: none;
  border-color: rgba(2, 196, 255, 0.4);
  background-color: #488bffd3;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.icon {
  position: absolute;
  left: 1rem;
  fill: #486aa8;
  width: 1rem;
  height: 1rem;
}


/* para que el buscador y el switch quede al lado */
.switch {
  display: flex;
  justify-content: space-between;
  margin-right: 1%;
}

.container {
  order: 1;
  margin-right: 15%;
}

@media screen and (max-width: 815px){
  .container {
    display: none;
  }
}


.group {
  order: 2;
}
