[x-cloak] {
  display: none;
}

a.anchor {
  display: block;
  position: relative;
  top: -70px;
  visibility: hidden;
}

a.anchorLarge {
  display: block;
  position: relative;
  top: -200px;
  visibility: hidden;
}

.blure-content {
  filter: blur(5px);
}

.required-field::after {
  content: "*";
  color: rgba(193, 40, 58);
}

/******************* ACCORDION ********************/
/* Tab content - closed */
.tab-content {
  max-height: 0;
  -webkit-transition: max-height 0.35s;
  -o-transition: max-height 0.35s;
  transition: max-height 0.35s;
}

/* :checked - resize to full height */
.tab input:checked ~ .tab-content {
  max-height: 100vh;
}

/* Label formatting when open */
.tab input:checked + label {
  border-color: #23a4b7; /*.border-indigo*/
  background-color: #f8fafc; /*.bg-gray-100 */
}

/* Icon */
.tab label::after {
  float: right;
  right: 0;
  top: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5;
  font-size: 1.25rem;
  text-align: center;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}

/* Icon formatting - closed */
.tab input[type="checkbox"] + label::after {
  content: "+";
  font-weight: bold; /*.font-bold*/
  border-width: 1px; /*.border*/
  border-radius: 9999px; /*.rounded-full */
  border-color: #b8c2cc; /*.border-grey*/
}
.tab input[type="radio"] + label::after {
  content: "\25BE";
  font-weight: bold; /*.font-bold*/
  border-width: 1px; /*.border*/
  border-radius: 9999px; /*.rounded-full */
  border-color: #b8c2cc; /*.border-grey*/
}

/* Icon formatting - open */
.tab input[type="checkbox"]:checked + label::after {
  transform: rotate(315deg);
  background-color: #6574cd; /*.bg-indigo*/
}
.tab input[type="radio"]:checked + label::after {
  transform: rotateX(180deg);
  background-color: #23a4b7; /*.bg-indigo*/
}

/*##################
    Sidebar Slide - Von links nach rechts
################# */

@media only screen and (max-width: 1279px) {
  #sidebar {
    transition: ease-in-out all 0.3s;
    z-index: 40;
  }
  /* #sidebar span {opacity: 0; position: absolute; transition: ease-in-out all .1s;} */
  /* #sidebar:hover {width: 250px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);} */
  /* #sidebar:hover span {opacity: 1;} */
  .sidebarwidth {
    width: 250px !important;
  }
}
@media only screen and (min-width: 1279px) {
  div.vt-sidebar-icon {
    opacity: 0;
    position: absolute;
    transition: ease-in-out all 0.1s;
  }
}

/* Tourguide Custom CSS*/
.shepherd.tippy-popper[x-placement^="bottom"] .tippy-arrow {
  border-bottom-color: #23a4b7;
}
.shepherd.tippy-popper[x-placement^="right"] .tippy-arrow {
  border-right-color: #23a4b7;
}
.shepherd.tippy-popper[x-placement^="top"] .tippy-arrow {
  border-top-color: #23a4b7;
}
.shepherd.tippy-popper[x-placement^="left"] .tippy-arrow {
  border-left-color: #23a4b7;
}

/* Ländervorwahl */
.iti {
  width: 100%;
}

/* CHECKBOX TOGGLE SWITCH */
/* @apply rules for documentation, these do not work as inline style */
.toggle-checkbox:checked {
  @apply: right-0;
  right: 0;
}
.toggle-checkbox:checked + .toggle-label {
  background-color: #60bfce;
}
[type='checkbox']:checked{
  background-color: #23A4B7!important;
}

/* Vue Multiselect */
.multiselect__tags {
  padding: 3px 40px 0 8px !important;
}

.multiselect__input {
  margin-top: 5px;
}
.multiselect__content-wrapper .multiselect-enter .multiselect-enter-active {
  bottom: 100% !important;
  top: auto !important;
}

/** Filepond - File Upload */

/* Drag-and-drop Area*/
.filepond--panel-root {
  background-color: #f3f4f6;
  border: dashed 1px #d1d5db;
}

/* Erfolgreicher Upload - Datei */
[data-filepond-item-state="processing-complete"] .filepond--item-panel {
  background-color: #88bc40;
}
