
.no_result {
  margin: 0.3rem;
  padding: 0.3rem 0.5rem;
  list-style: none;
  text-align: left;
  font-size: 1rem;
  color: #212121;
  transition: all 0.1s ease-in-out;
  border-radius: 0.35rem;
  background-color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
  outline: none;
}

.mode {
  margin-top: 5px;
}

.toggler::selection {
    color:  rgba(13, 110, 253, 1);
}

.toggle {
  display: flex;
  /* position: absolute; */
  border: 1px solid rgba(13, 110, 253, 0.5);
  height: 25px;
  width: 120px;
  border-radius: 50px;
  justify-content: flex-start;
  align-content: center;
  transition: all 0.2s ease-in-out;
}

.toggler {
  display: grid;
  cursor: pointer;
  font-size: 0.8rem;
  background-color: rgba(13, 110, 253, 0.5);
  color:  rgba(13, 110, 253, 1);;
  height: 23px;
  width: 60px;
  border-radius: 50px;
  margin: 0px;
  text-align: center;
  align-content: center;
  align-self: flex-start;
  transition: all 0.2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
}

.strict {
  display: inline;
}

.loose {
  display: inline;
}

.selection {
  display: none;
  margin-top: 5vh;
  font-size: 1rem;
  font-weight: bold;
  color: #ffc6c6;
  transition: all 0.3s ease-in-out;
}

.selection::selection {
  color: #64ceaa;
}

@media only screen and (max-width: 600px) {
  .selection {
    margin-top: 15vh;
  }

}

