@charset "UTF-8";
/* Formateo de estilos */
textarea,
.custom-select,
input:not(input[type=checkbox]):not(input[type=radio]):not(input[type=range]):not(.options-searcher):not(.multi-select) {
  background-color: transparent;
  border: none;
  color: #333;
  font-family: inherit;
  font-size: 18px;
  padding: 16px 24px;
  resize: none;
  width: 100%;
  outline: none;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #7b87a3 !important;
  position: relative;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #7b87a3;
}

input::placeholder,
textarea::placeholder {
  color: #7b87a3;
}

.input-group,
.form-fieldset > .input-wrapper {
  margin-bottom: 1rem;
  transition: margin-bottom 0.2s ease;
}
.input-group.justify-content-center,
.form-fieldset > .input-wrapper.justify-content-center {
  justify-content: center;
}
.input-group.align-items-center,
.form-fieldset > .input-wrapper.align-items-center {
  align-items: center;
}
.input-group.justify-content-start,
.form-fieldset > .input-wrapper.justify-content-start {
  justify-content: flex-start;
}
.input-group.align-items-start,
.form-fieldset > .input-wrapper.align-items-start {
  align-items: flex-start;
}
.input-group.justify-content-end,
.form-fieldset > .input-wrapper.justify-content-end {
  justify-content: flex-end;
}
.input-group.align-items-end,
.form-fieldset > .input-wrapper.align-items-end {
  align-items: flex-end;
}

/* Divisor Line */
hr.form-line {
  width: 100%;
  position: relative;
  margin: 4rem auto;
  border: 1px solid #fec4b0;
}

/* Label */
.form-label {
  margin: 0 0 0 10px;
  cursor: pointer;
}

/* Select Nativo */
.select-hidden {
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

/* Fieldset Formateo */
.form-fieldset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  padding: 0;
  min-inline-size: unset;
  /* Varición - Cuando Fieldset es Padre */
  /* Varición - Cuando Fieldset es hijo */
}
.form-fieldset.outof {
  margin: 0 0 60px 0;
}
.form-fieldset.outof legend {
  display: block;
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 30px 0;
  text-align: center;
  width: 100%;
}
.form-fieldset.within {
  margin: 0 0 24px 0;
}
.form-fieldset.within legend {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-align: center;
  width: 100%;
}

/* Agrupación para Checkboxes */
.form-fieldset.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 24px 0;
  gap: 10px;
}

.form-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.form-group-tags.justify-content-center {
  justify-content: center;
}
.form-group-tags.align-items-center {
  align-items: center;
}
.form-group-tags.justify-content-start {
  justify-content: flex-start;
}
.form-group-tags.justify-content-around {
  justify-content: space-around;
}
.form-group-tags.justify-content-between {
  justify-content: space-between;
}
.form-group-tags.justify-content-evenly {
  justify-content: space-evenly;
}
.form-group-tags.align-items-start {
  align-items: flex-start;
}
.form-group-tags.justify-content-end {
  justify-content: flex-end;
}
.form-group-tags.align-items-end {
  align-items: flex-end;
}
.form-group-tags input[type=checkbox],
.form-group-tags input[type=radio] {
  display: none;
}
.form-group-tags input[type=checkbox]:checked + .label-tag.label-default,
.form-group-tags input[type=radio]:checked + .label-tag.label-default {
  background-color: #333333;
}
.form-group-tags input[type=checkbox]:checked + .label-tag.label-success,
.form-group-tags input[type=radio]:checked + .label-tag.label-success {
  background-color: #00994e;
}
.form-group-tags input[type=checkbox]:checked + .label-tag.label-info,
.form-group-tags input[type=radio]:checked + .label-tag.label-info {
  background-color: #00c1da;
}
.form-group-tags input[type=checkbox]:checked + .label-tag.label-warning,
.form-group-tags input[type=radio]:checked + .label-tag.label-warning {
  background-color: #dbc502;
}
.form-group-tags input[type=checkbox]:checked + .label-tag.label-danger,
.form-group-tags input[type=radio]:checked + .label-tag.label-danger {
  background-color: #ff0000;
}
.form-group-tags .label-tag {
  display: flex;
  align-items: center;
  height: unset !important;
  padding: 10px 15px !important;
  font-size: 16px !important;
  border-radius: 5px;
  color: #ffffff;
  background-color: #7b87a3;
  transition: 0.2s background-color ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}
.form-group-tags .label-tag:hover.label-default {
  background-color: #333333;
}
.form-group-tags .label-tag:hover.label-success {
  background-color: #00994e;
}
.form-group-tags .label-tag:hover.label-info {
  background-color: #00c1da;
}
.form-group-tags .label-tag:hover.label-warning {
  background-color: #dbc502;
}
.form-group-tags .label-tag:hover.label-danger {
  background-color: #ff0000;
}

.input-wrapper {
  /* Envoltura/Wrapper de todos los elementos del formulario */
  /* Envoltura/Wrapper de unicamente los checkbox */
  /* Envoltura/Wrapper de unicamente los password */
  /* Envoltura/Wrapper de unicamente los select */
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) {
  position: relative;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-handle-error {
  display: flex;
  align-items: center;
  color: red;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.5s ease, margin-top 0.5s ease;
  width: 100%;
  word-wrap: break-word;
  word-break: break-word;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-handle-error.show {
  opacity: 1;
  margin-top: 4px;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-handle-error img {
  display: inline-flex !important;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #7b87a3 !important;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: center;
  position: relative;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group > label {
  padding: 16px 12px;
  background-color: #f2f2f2;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  cursor: pointer;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group > label:first-of-type {
  border-right: 1px #7b87a3 solid;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group > label:last-of-type:not(:first-child) {
  border-left: 1px #7b87a3 solid;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group > label.label-sm {
  min-width: 8rem;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group > label.label-md {
  min-width: 12rem;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group > label.label-lg {
  min-width: 16rem;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group-textarea {
  flex-flow: column;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group-textarea > label:first-of-type {
  border-right: none;
  border-bottom: 1px #7b87a3 solid;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group-textarea > label:last-of-type:not(:first-child) {
  border-left: none;
  border-top: 1px #7b87a3 solid;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group textarea,
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group .custom-select,
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group multi-input,
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group input:not(input[type=checkbox]):not(input[type=range]):not(.options-searcher):not(.multi-select) {
  border: none !important;
}
.input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group multi-input {
  margin-bottom: 0;
}
.input-wrapper[data-type=checkbox] {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.input-wrapper[data-type=checkbox] .input-group.input-group-check {
  margin-bottom: 0 !important;
}
.input-wrapper[data-type=checkbox] input[type=radio], .input-wrapper[data-type=checkbox] input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 22px;
  min-width: 22px;
  position: relative;
}
.input-wrapper[data-type=checkbox] input[type=radio]::before, .input-wrapper[data-type=checkbox] input[type=checkbox]::before {
  background-color: #fff;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  position: absolute;
  border: 1px solid #95a1bb;
  border-radius: 4px;
}
.input-wrapper[data-type=checkbox] input[type=radio]:checked::before, .input-wrapper[data-type=checkbox] input[type=checkbox]:checked::before {
  background-color: #e83687;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  position: absolute;
  border: 1px solid transparent;
}
.input-wrapper[data-type=checkbox] input[type=radio]:checked::after, .input-wrapper[data-type=checkbox] input[type=checkbox]:checked::after {
  border: 1px solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  content: "";
  height: 10px;
  left: 7px;
  top: 2px;
  width: 4px;
  pointer-events: none;
  position: absolute;
}
.input-wrapper[data-type=password] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.input-wrapper[data-type=password] .show-password {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 16px;
  right: 24px;
  background-size: cover;
  background-image: url(/images/visibilityoff.svg?c3a96369679c199788c75ee6424933f0);
}
.input-wrapper[data-type=password] .show-password.showing {
  background-image: url(/images/visibility.svg?3c519d929b1435dbd9dae7825c238a44);
}
.input-wrapper[data-type=select-one]::after {
  border: 1px solid #95a1bb;
  border-width: 2px 2px 0 0;
  content: "";
  height: 12px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 16px;
  transform: rotate(135deg);
  transition: transform 0.8s ease-in-out;
  width: 12px;
}
.input-wrapper[data-type=select-one].active::after {
  transform: rotate(-45deg);
}
.input-wrapper[data-type=select] .input-wrapper-group > .select-wrapper, .input-wrapper[data-type=select] .input-wrapper-group > .select-wrapper > .input-wrapper {
  margin-bottom: 0 !important;
}
.input-wrapper.active .data-autocomplete,
.input-wrapper.active .options-select {
  max-height: 380px;
  opacity: 1;
  overflow-y: scroll;
}
.input-wrapper .input-button {
  height: 56px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.input-wrapper .input-button a {
  width: auto;
  height: 56px;
  position: relative;
  padding: 0 10px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #e83687;
  border: 1px solid #e83687;
  color: #fff;
}
.input-wrapper .input-button a:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-left: 1px;
}
.input-wrapper .input-button a:not(.disabled):hover {
  background-color: #fff;
  color: #e83687;
}
.input-wrapper .input-button a.btn-verify-phone {
  background-color: transparent;
  color: #e83687;
  border: 1px transparent;
  margin: -1px;
}
.input-wrapper .input-button a.btn-verify-phone:not(.border-right) {
  border-right: none;
}
.input-wrapper .input-button a.btn-verify-phone:hover {
  text-decoration: underline;
  background-color: transparent;
  border: 1px transparent;
}
.input-wrapper .input-button a:disabled, .input-wrapper .input-button a.disabled {
  background: #95a1bb !important;
  border: 1px solid #95a1bb;
  cursor: default;
}

.custom-select {
  color: #7b87a3;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 1rem 2.5rem 1rem 1rem;
}

.options-searcher {
  border: 1px solid #d9deea;
  border-radius: 4px;
  border-width: 0 0 2px 0;
  display: block;
  font-size: 16px;
  margin: 10px auto;
  outline: 2px solid transparent;
  padding: 16px 24px;
  width: 95%;
  transition: outline 0.5s ease;
}
.options-searcher:focus {
  outline: 2px solid #d9deea;
  border-width: 0 0 0 0;
}

.options-select,
.data-autocomplete {
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  border: 1px solid #7b87a3;
  left: 0;
  list-style: none;
  margin: 0 0 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 50px;
  transition: 0.8s opacity, 0.8s max-height;
  width: 100%;
  z-index: 2;
  /* Firefox */
  scrollbar-color: #d9deea #f1f1f1;
  scrollbar-width: thin;
}
.options-select li:not(.li-searcher),
.data-autocomplete li:not(.li-searcher) {
  padding: 16px 24px;
  background-color: transparent;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.options-select li:not(.li-searcher).filter, .options-select li:not(.li-searcher).selected,
.data-autocomplete li:not(.li-searcher).filter,
.data-autocomplete li:not(.li-searcher).selected {
  display: none;
}
.options-select li:not(.li-searcher):hover,
.data-autocomplete li:not(.li-searcher):hover {
  background-color: #fff9f9;
}
.options-select::-webkit-scrollbar,
.data-autocomplete::-webkit-scrollbar {
  width: 8px;
  border-radius: 0 0 0 5px;
  background-color: #f1f1f1;
}
.options-select::-webkit-scrollbar-thumb,
.data-autocomplete::-webkit-scrollbar-thumb {
  border-radius: 0 0 0 5px;
  background-color: #d9deea;
}
.options-select .input-wrapper-group,
.data-autocomplete .input-wrapper-group {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #7b87a3 !important;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: center;
}
.options-select .input-wrapper-group > label,
.data-autocomplete .input-wrapper-group > label {
  padding: 16px 12px;
  background-color: #f2f2f2;
  border-right: 1px #7b87a3 solid;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  cursor: pointer;
  margin: 0 !important;
}
.options-select .input-wrapper-group > label.label-sm,
.data-autocomplete .input-wrapper-group > label.label-sm {
  min-width: 8rem;
}
.options-select .input-wrapper-group > label.label-md,
.data-autocomplete .input-wrapper-group > label.label-md {
  min-width: 12rem;
}
.options-select .input-wrapper-group > label.label-lg,
.data-autocomplete .input-wrapper-group > label.label-lg {
  min-width: 16rem;
}
.options-select .input-wrapper-group textarea,
.options-select .input-wrapper-group .custom-select,
.options-select .input-wrapper-group multi-input,
.options-select .input-wrapper-group input:not(input[type=checkbox]):not(input[type=range]):not(.options-searcher):not(.multi-select):not(.option-radio),
.data-autocomplete .input-wrapper-group textarea,
.data-autocomplete .input-wrapper-group .custom-select,
.data-autocomplete .input-wrapper-group multi-input,
.data-autocomplete .input-wrapper-group input:not(input[type=checkbox]):not(input[type=range]):not(.options-searcher):not(.multi-select):not(.option-radio) {
  border: none !important;
}
.options-select .input-wrapper-group multi-input,
.data-autocomplete .input-wrapper-group multi-input {
  margin-bottom: 0;
}

.data-autocomplete {
  top: 98%;
  border-top: none;
}

/* Envoltura/Wrapper de unicamente los textarea */
#counter .counting {
  color: #7b87a3;
}
#counter.valid .counting {
  color: #00994e;
}
#counter.invalid .num-offset,
#counter.invalid .counting {
  color: #ff0000;
}

/*Variaciones que usan decoradores*/
.input-after[data-format=hora]::after {
  color: #7b87a3;
  content: attr(data-format);
  font-size: 18px;
  line-height: 18px;
  pointer-events: none;
  position: absolute;
  right: 60px;
  top: 18px;
}
.input-after[data-format=€]::after {
  color: #7b87a3;
  content: attr(data-format);
  font-size: 18px;
  line-height: 18px;
  pointer-events: none;
  position: absolute;
  right: 48px;
  top: 19px;
}

/* Agrupación de Inputs  */
.input-group {
  align-items: center;
  display: flex;
  gap: 10px;
  width: 100%;
}
.input-group.justify-content-center {
  justify-content: center;
}
.input-group.align-items-center {
  align-items: center;
}
.input-group.justify-content-start {
  justify-content: flex-start;
}
.input-group.align-items-start {
  align-items: flex-start;
}
.input-group.justify-content-end {
  justify-content: flex-end;
}
.input-group.align-items-end {
  align-items: flex-end;
}
.input-group .input-wrapper,
.input-group .select-wrapper,
.input-group .input-group {
  margin: 0 !important;
}
.input-group.one-half .input-wrapper {
  width: 50%;
}
.input-group.one-third .input-wrapper:first-child {
  width: 70%;
}
.input-group.one-third .input-wrapper:last-child {
  width: 30%;
}
.input-group.togheter {
  flex-direction: row;
  gap: 0;
  margin: 0;
}
.input-group.togheter .input-wrapper:first-child input, .input-group.togheter .input-wrapper:first-child .custom-select {
  border-radius: 4px 0px 0px 4px;
}
.input-group.togheter .input-wrapper:last-child input, .input-group.togheter .input-wrapper:last-child .custom-select {
  border-width: 1px 1px 1px 0;
  border-radius: 0px 4px 4px 0px;
}
.input-group.three .input-wrapper {
  width: 33.333%;
}
.input-group-check input[type=radio] {
  width: auto !important;
}

.input-tel {
  padding-left: 54px !important;
}

.iti {
  width: 100%;
}
.iti__flag-container {
  height: calc(100% - 24px);
}
.iti:not(.iti--allow-dropdown) .iti__flag-container {
  display: none !important;
}

multi-input {
  display: block;
  margin: 0 0 20px 0;
  border: 1px solid #7b87a3 !important;
  padding: 16px 24px !important;
  cursor: text;
  /* NB use of pointer-events to only allow events from the × icon */
}
multi-input input {
  width: calc(100% - 22px);
  border: none;
  font-size: var(--multi-input-input-font-size, 14px);
  outline: none;
  padding: 0;
  color: #333;
  font-size: 18px;
  margin: 2.5px 0;
  padding-right: 22px;
}
multi-input input::-webkit-calendar-picker-indicator {
  display: none;
}
multi-input input::-moz-placeholder {
  color: #333;
}
multi-input input::placeholder {
  color: #333;
}
multi-input input.hide-placeholder::-moz-placeholder {
  color: transparent;
}
multi-input input.hide-placeholder::placeholder {
  color: transparent;
}
multi-input div.item {
  background-color: var(--multi-input-item-bg-color, #dedede);
  border: var(--multi-input-item-border, 1px solid #ccc);
  border-radius: 2px;
  color: #222;
  display: inline-block;
  font-size: var(--multi-input-item-font-size, 14px);
  margin: 2.5px 5px 2.5px 0;
  padding: 2px 25px 2px 5px;
  pointer-events: none;
  position: relative;
  top: -1px;
}
multi-input div.item:hover {
  background-color: #eee;
  color: black;
}
multi-input div.item::after {
  color: black;
  content: "×";
  cursor: pointer;
  font-size: 18px;
  pointer-events: auto;
  position: absolute;
  right: 5px;
  top: -1px;
}
multi-input button.add-option {
  width: 22px;
  height: 22px;
  position: relative;
  margin: 2.5px 0 2.5px -28px;
  font-size: 20px;
  z-index: 2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: #e83687;
}
multi-input button.add-option.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s;
}
multi-input button.add-option img {
  width: 12px;
  height: 12px;
  margin: 0 auto;
  display: table;
}

.multi-select-autocomplete {
  display: block;
  margin: 0;
  border: none !important;
  padding: 16px 24px !important;
  cursor: text;
}
.multi-select-autocomplete .input-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row;
}
.multi-select-autocomplete .input-content .input-base {
  width: calc(100% - 4rem);
  max-height: 3rem;
  border: 1px solid #7b87a3;
}
.multi-select-autocomplete .input-content .input-base::-moz-placeholder {
  color: #333;
}
.multi-select-autocomplete .input-content .input-base::placeholder {
  color: #333;
}
.multi-select-autocomplete .input-content .input-base.hide-placeholder::-moz-placeholder {
  color: transparent;
}
.multi-select-autocomplete .input-content .input-base.hide-placeholder::placeholder {
  color: transparent;
}
.multi-select-autocomplete .input-content .data-autocomplete {
  width: calc(100% - 4rem);
}
.multi-select-autocomplete .input-content .btn_primary {
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multi-select-autocomplete .selected-items-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row;
  flex-wrap: wrap;
}
.multi-select-autocomplete .selected-items-content .item {
  height: unset !important;
  padding: 10px 15px !important;
  font-size: 16px !important;
  border-radius: 5px;
  color: #fff;
  background-color: #7b87a3;
  text-decoration: none;
  transition: 0.2s background-color ease;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0.5rem 0 0;
}
.multi-select-autocomplete .selected-items-content .item:hover {
  cursor: pointer;
  background-color: #333333;
}
.multi-select-autocomplete .selected-items-content .item .delete-item {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

:host {
  border: var(--multi-input-border, 1px solid #ddd);
  display: block;
  overflow: hidden;
  padding: 5px;
}

/* NB use of pointer-events to only allow events from the × icon */
::slotted(div.item) {
  background-color: var(--multi-input-item-bg-color, #dedede);
  border: var(--multi-input-item-border, 1px solid #ccc);
  border-radius: 2px;
  color: #222;
  display: inline-block;
  font-size: var(--multi-input-item-font-size, 14px);
  margin: 5px;
  padding: 2px 25px 2px 5px;
  pointer-events: none;
  position: relative;
  top: -1px;
}

/* NB pointer-events: none above */
::slotted(div.item:hover) {
  background-color: #eee;
  color: black;
}

::slotted(input) {
  border: none;
  font-size: var(--multi-input-input-font-size, 14px);
  outline: none;
  padding: 10px 10px 10px 5px;
}

@media screen and (max-width: 767px) {
  .input-group:not(.input-group.togheter) {
    flex-direction: column;
  }
  .input-group:not(.input-group.togheter) textarea,
  .input-group:not(.input-group.togheter) .custom-select,
  .input-group:not(.input-group.togheter) input:not(input[type=checkbox]):not(input[type=radio]):not(input[type=range]):not(.options-searcher):not(.multi-select),
  .input-group:not(.input-group.togheter) .input-wrapper-group,
  .input-group:not(.input-group.togheter) .input-group.togheter {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .input-group.input-group-check .input-group {
    flex-direction: row !important;
  }
  .input-group.input-group-check input[type=radio] {
    width: 22px !important;
    height: 22px !important;
  }
  .input-wrapper.input-wrapper[data-type=checkbox] .input-group:not(.input-group.togheter) {
    flex-direction: row;
  }
}
@media screen and (max-width: 620px) {
  .input-group:not(.input-group.togheter) textarea,
  .input-group:not(.input-group.togheter) .custom-select,
  .input-group:not(.input-group.togheter) input:not(input[type=checkbox]):not(input[type=radio]):not(input[type=range]):not(.options-searcher):not(.multi-select),
  .input-group:not(.input-group.togheter) .input-wrapper-group,
  .input-group:not(.input-group.togheter) .input-group.togheter {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .input-group.one-half > .input-wrapper {
    width: 100%;
  }
  .input-group.one-third > .input-wrapper:first-child, .input-group.one-third > .input-wrapper:last-child {
    width: 100%;
  }
  .input-group .input-wrapper:first-child,
  .input-group .select-wrapper:first-child {
    margin-bottom: calc(1rem - 10px);
  }
  .input-group.input-group-check .input-group {
    flex-direction: row !important;
  }
  .input-group.input-group-check input[type=radio] {
    width: 22px !important;
    height: 22px !important;
  }
  .form-base .input-group-check input[type=radio] {
    width: 22px !important;
    height: 22px !important;
  }
  .input-wrapper.input-wrapper[data-type=checkbox] .input-group.grid {
    display: flex !important;
    flex-flow: row !important;
    flex-wrap: wrap !important;
  }
  .input-wrapper.input-wrapper[data-type=checkbox] .input-group.grid .check {
    width: 50%;
    padding-right: 15px;
  }
  .form-fieldset.grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .multi-select-autocomplete {
    padding: 10px 5px !important;
  }
  .multi-select-autocomplete .input-content .input-base {
    width: calc(100% - 3.5rem);
    padding: 16px 12px;
  }
}
@media screen and (max-width: 480px) {
  .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group, .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-group:not(.input-group.togheter) {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group label, .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-group:not(.input-group.togheter) label {
    width: 100% !important;
    max-width: unset;
    padding: 8px 12px;
    border: none;
    margin: 0;
  }
  .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group label:first-of-type, .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-group:not(.input-group.togheter) label:first-of-type {
    border-right: none;
    border-bottom: 1px #7b87a3 solid;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
  }
  .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-wrapper-group label:last-of-type:not(:first-child), .input-wrapper:not(.input-wrapper[data-type=checkbox]) .input-group:not(.input-group.togheter) label:last-of-type:not(:first-child) {
    width: 100% !important;
    border-left: none;
    border-top: 1px #7b87a3 solid;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
  }
  .input-wrapper[data-type=password] .show-password {
    top: unset;
    bottom: 16px;
  }
}
@media screen and (max-width: 450px) {
  .all-phones input:not(input[type=checkbox]):not(input[type=range]):not(.options-searcher):not(.multi-select) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: transparent !important;
  }
  .all-phones .hidden-code.show {
    max-height: 110px;
    margin-top: 0 !important;
  }
  .all-phones .hidden-code.show input:not(input[type=checkbox]):not(input[type=range]):not(.options-searcher):not(.multi-select) {
    border-radius: 0 !important;
    border-bottom: transparent !important;
  }
  .all-phones .hidden-code.show .input-button {
    border: 1px solid #95a1bb !important;
    border-radius: 0;
  }
  .all-phones .input-wrapper .input-button {
    width: 100%;
    position: relative;
    border: 1px solid #e83687;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
  }
  .all-phones .input-wrapper .input-button a {
    width: 100%;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  .all-phones .input-wrapper .input-button a.btn-verify-phone {
    min-width: 50% !important;
  }
}
