/* FORM STYLING */
:focus {
  outline: none !important;
}

/* input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  caret-color: #cef2ee;
  background-color: #cef2ee;
  cursor: pointer;
  display: grid;
  place-content: center;
}

input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  display: grid;
  place-content: center;
}

input[type="radio"]::before {
  content: "";
  width: .625rem;
  height: .625rem;
  transform: scale(0);
  transition: 125ms transform ease-out;
  box-shadow: inset 1em 1em var(--kjn-discovery--kjn-discovery-50);
  border-radius: 50%;
  cursor: pointer;
}

input[type="checkbox"]::before {
  content: "";
  width: 1rem;
  height: 1rem;
  transform: scale(0);
  transition: 125ms transform ease-out;
  box-shadow: inset 1em 1em #00b9a4;
  border-radius: 0.25rem;
  cursor: pointer;
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  transform: scale(1);
  cursor: pointer;
} */

/* TIPPY */

.tippy-box[data-theme~='kjn'] {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;
  border-radius: .5rem;
}

.tippy-box[data-theme~='kjn'] .tippy-content {
  color: var(--kjn-interstellar--kjn-interstellar);
}

.tippy-box[data-theme~='kjn'] > .tippy-arrow::before {
  display: none;
}

/* GOOGLE Autocomplete */

.pac-container {
  background-color: #fff;
  position: absolute!important;
  z-index: 1000;
  border-radius: 1.5rem;
  border-top: none !important;
  font-family: Arial, sans-serif;
  box-shadow: -48px 48px 16px 0px rgba(0, 0, 0, 0.00), -32px 32px 16px 0px rgba(0, 0, 0, 0.01), -16px 16px 16px 0px rgba(0, 0, 0, 0.05), -8px 8px 12px 0px rgba(0, 0, 0, 0.09), -2px 2px 8px 0px rgba(0, 0, 0, 0.10);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 0.5rem;
}

.pac-logo:after {
  content: "";
  padding: .75rem 1.5rem;
  height: 1.75rem;
  text-align: right;
  display: block;
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);
  background-position: calc(100% - 1rem) center; /* Verschiebt das Bild um 1rem nach links */
  background-repeat: no-repeat;
  background-size: 7.5rem .875rem;
}
.hdpi.pac-logo:after {
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png)
}
.pac-item {
  cursor: default;
  padding: .75rem 1.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.4em;
  text-align: left;
  border-top: .0625rem solid #e6e6e6;
  font-size: 1rem;
  color: #999
}
.pac-item:nth-of-type(1) {
  border-top: none !important;
}
.pac-item:hover {
  background-color: #fafafa
}
.pac-item-selected,
.pac-item-selected:hover {
  background-color: #ebf2fe
}
.pac-matched {
  font-weight: 700
}
.pac-item-query {
  font-size: 1rem;
  padding-right: .25rem;
  color: #000
}
.pac-icon {
  width: 15px;
  height: 20px;
  margin-right: 7px;
  margin-top: 6px;
  display: inline-block;
  vertical-align: top;
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
  background-size: 34px;
  display:none;
}
.hdpi .pac-icon {
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png)
}
.pac-icon-search {
  background-position: -1px -1px
}
.pac-item-selected .pac-icon-search {
  background-position: -18px -1px
}
.pac-icon-marker {
  background-position: -1px -161px
}
.pac-item-selected .pac-icon-marker {
  background-position: -18px -161px
}
.pac-placeholder {
  color: gray
}