button.pill,
a.pill {
  border: 0;
  background-color: var(--pl-blue);
  color: var(--pl-white);
  padding: 0.5rem 1rem;
  padding-right: 2rem;
  border-radius: 0.7rem;
  font-family: "Asap Condensed", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  align-self: end;
}

.pill .icon {
  display: none;
}

.pill:hover {
  background-color: var(--pl-medium-grey);
}

.pill.white {
  border: 0;
  background-color: var(--pl-white);
  color: var(--pl-blue);
}

.pill.white:hover {
  background-color: var(--pl-medium-grey);
  color: var(--pl-white);
}

.inner_form {
  position: relative;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  top: -50%;
  padding: 1rem;
}

.inner_form.cb {
  top: 0 !important;
}

.inner_form_component {
  margin-bottom: 1rem;
}

.inner_form_component .instructions {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--pl-grey);
}

.inner_form_component_ghost {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: grid;
  grid-template-columns: auto 30px;
  height: 100%;
  align-items: end;
  opacity: 1;
  background-color: var(--pl-white);
}

.inner_form_component_ghost.nozombies {
  grid-template-columns: auto 30px;
}

.inner_form_component_wrapper {
  font-family: "Asap Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--pl-grey);
  border: solid 1px var(--pl-light-grey);
  outline: none;
  height: 2rem;
  cursor: pointer;
  width: 100%;
  position: relative;
}

.inner_form_component_wrapper.texarea_placer {
  height: auto;
}

.inner_form_component_wrapper.checkbox_holder {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 1rem;
  border: none !important;
}

.inner_form_component_wrapper label {
  padding-bottom: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20ch;
}

.inner_form_component_wrapper i {
  justify-self: right;
  padding-bottom: 5px;
}

.zombie_input {
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.minispan {
  position: absolute;
  left: 0.6rem;
  font-size: 0.6rem;
  font-weight: 600;
  top: 0.2rem;
}

.deactivated {
  opacity: 0.5;
  pointer-events: none;
}

.long_stay {
  display: none;
}

.inner_form_component_input {
  display: grid;
  grid-template-columns: auto auto;
  height: 100%;
  align-items: end;
  opacity: 1;
  background-color: var(--pl-white);
  border: solid 1px var(--pl-light-grey);
  outline: none !important;
  padding: 0;
  width: Calc(100% - 1rem);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-family: "Asap Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

input[type="checkbox"].inner_form {
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

div.rowme {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}

.nozombie {
  position: relative;
  font-family: "Asap Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--pl-grey);
  grid-column: 1/2;
  background-color: transparent;
  width: 100%;
  border: none;
  margin-top: 2px;
  outline: none;
  align-self: start;
  padding: 0px;
}

@media (max-width: 760px) {
  .inner_form_component_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: 3rem;
    box-shadow: none;
  }

  .inner_form_component_wrapper,
  .nozombie {
    font-size: 1rem;
  }
  .inner_form_component_wrapper label .minispan {
    font-size: 0.7rem;
  }
  button.pill {
    padding-right: 1rem;
    padding-left: 1rem;
    border-radius: 0px !important;

    width: 100%;
    height: 3rem;
  }

  button.pill .icon {
    display: inline;
  }

  .inner_form {
    gap: 0px;
    padding: 0;
  }

  .inner_form_component_wrapper i {
    font-size: 0.8rem;
    align-self: center;
  }
}
