.fluidInput {
  --option-btn-width: 40px;
  position: relative;
  cursor: pointer;
  min-width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.fluidInput .fluidInput__current {
  opacity: 1;
  min-height: 12px;
}
.fluidInput .fluidInput__notify {
  position: absolute;
  bottom: 100%;
  background-color: #fff;
  padding: 3px;
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.5s;
  left: 0%;
  min-width: 50%;
}
.fluidInput .fluidInput__input {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.fluidInput input, .fluidInput select, .fluidInput .ck-editor__wrapper {
  position: absolute;
  z-index: -1;
  opacity: 0;
  background-color: transparent;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0px;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--primary-c);
  line-height: inherit;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.fluidInput input:focus, .fluidInput select:focus, .fluidInput .ck-editor__wrapper:focus {
  outline: 0;
  box-shadow: none !important;
  border: 0px solid transparent !important;
  border-bottom: 1px solid var(--primary-c) !important;
  border-radius: 0px !important;
}
.fluidInput.is-active input, .fluidInput.is-active select, .fluidInput.is-active .ck-editor__wrapper {
  opacity: 1;
  z-index: 1;
}
.fluidInput.is-active select {
  min-height: 400px;
  background-color: #fff;
}
.fluidInput.is-active .fluidInput__current {
  opacity: 0;
}
.fluidInput:hover:not(.is-active) .fluidInput__notify {
  opacity: 1;
  transition: opacity;
  transition-delay: 0.5s;
  transition-property: opacity;
}
/*
// BUTTONS
 */
.fluidInput .fluidInput__buttons {
  display: flex;
  position: absolute;
  top: -50%;
  opacity: 0;
  right: 0;
  pointer-events: none;
  transition: top 0.3s, opacity 0.3s;
  justify-content: flex-end;
}
.fluidInput .fluidInput__button {
  display: flex;
  width: var(--option-btn-width);
  height: var(--option-btn-width);
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  transition: background-color 0.3s;
  cursor: pointer;
}
.fluidInput .fluidInput__button:hover {
  background-color: var(--theme);
}
.fluidInput.is-active .fluidInput__buttons {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}
.fluidInput .fluidInput__title {
  display: none;
  white-space: nowrap;
}
.fluidInstructions {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  height: 0;
  width: 0;
  overflow: hidden;
  position: fixed;
  transition: opacity 0.3s, height 0.3s, width 0.3s;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
}
.fluidInstructions.is-active {
  opacity: 1;
}
.fluidInstructions .fluidInstructions__header {
  white-space: nowrap;
  line-height: 20px;
  padding: 5px;
  display: flex;
  gap: 5px;
}
