.button-ia {
  text-decoration: none;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #00c7ec;
  border: 1px solid #00c7ec;
  border-radius: 5px;
  line-height: 2em;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.button-ia:hover {
  color: white;
  box-shadow: 0 0 30px 0 rgba(0, 199, 236, 0.5);
  background-color: #00c7ec;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.button-ia:hover:before {
  -webkit-animation: shine 0.5s 0s linear;
  -moz-animation: shine 0.5s 0s linear;
  animation: shine 0.5s 0s linear;
}

.button-ia:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

.button-ia:before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 15px 3px white;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@-webkit-keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

@-moz-keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.group {
  position: relative;
  margin: 10px 0px 30px 0px;
}

.input_sth {
  background: none;
  color: #5e5e5e;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #c6c6c6;
}

.input_sth:focus {
  outline: none;
}

.input_sth:focus~label,
.input_sth:valid~label {
  top: -14px;
  font-size: 12px;
  color: #7d7e7f;
}

.input_sth:focus~.bar:before {
  width: 320px;
}

input[type=password] {
  letter-spacing: 0.3em;
}

.label_sth {
  color: #c6c6c6;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
}

input[type="date"] {
  color: transparent;
}

.select2-selection {
  background: none !important;
  color: #5e5e5e !important;
  font-size: 18px !important;
  padding: 10px 10px 10px 5px !important;
  display: block !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #c6c6c6 !important;
}

.select2-selection__clear {
  display: none !important;
}

.select2-dropdown {
  background-color: #f4f6f9;
  border: solid 1px #c6c6c6 !important;
}

.select2-selection__rendered {
  padding-left: 0px !important;
  color: #5e5e5e !important;
  padding-bottom: 10px !important;
}

.moveall,
.removeall,
#bootstrap-duallistbox-nonselected-list_,
#bootstrap-duallistbox-selected-list_ {
  border-radius: 0 !important;
  border: 1px solid #c6c6c6 !important;
  outline: none !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
  box-shadow: none !important;
}

.label_upload {
  width: 150px;
  height: 50px;
  background-color: #ffc1c1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #505050;
  cursor: pointer;
}

.copy_tag {
  cursor: pointer;
  background-color: rgb(177, 253, 241);
  padding: 4px;
  border: dotted 1px rgb(88, 211, 192);
}

label {
  font-weight: 100 !important;
}

.astronauta {
  animation: flotar 5s infinite alternate;
  /* Otros estilos para la imagen (por ejemplo, tamaño, posición, etc.) */
}

@keyframes flotar {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.cont_hab {
  border-radius: 50px;
  text-align: center;
  border: dotted 1px #18c9e7;
  padding: 2px 10px 2px 10px;
  margin-bottom: 2px;
  cursor: pointer;
  margin-left: 5px;
  background-color: #d5f9ff;
}

/* CSS CHECKBOX */

  .checkbox-wrapper-28 {
    --size: 25px;
    position: relative;
  }

  .checkbox-wrapper-28 *,
  .checkbox-wrapper-28 *:before,
  .checkbox-wrapper-28 *:after {
    box-sizing: border-box;
  }

  .checkbox-wrapper-28 .promoted-input-checkbox {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .checkbox-wrapper-28 input:checked ~ svg {
    height: calc(var(--size) * 0.6);
    -webkit-animation: draw-checkbox-28 ease-in-out 0.2s forwards;
            animation: draw-checkbox-28 ease-in-out 0.2s forwards;
  }
  .checkbox-wrapper-28 label:active::after {
    background-color: #e6e6e6;
  }
  .checkbox-wrapper-28 label {
    color: #0080d3;
    line-height: var(--size);
    cursor: pointer;
    position: relative;
  }
  .checkbox-wrapper-28 label:after {
    content: "";
    height: var(--size);
    width: var(--size);
    margin-right: 8px;
    float: left;
    border: 2px solid #0080d3;
    border-radius: 3px;
    transition: 0.15s all ease-out;
  }
  .checkbox-wrapper-28 svg {
    stroke: #0080d3;
    stroke-width: 3px;
    height: 0;
    width: calc(var(--size) * 0.6);
    position: absolute;
    left: calc(var(--size) * 0.21);
    top: calc(var(--size) * 0.2);
    stroke-dasharray: 33;
  }

  @-webkit-keyframes draw-checkbox-28 {
    0% {
      stroke-dashoffset: 33;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes draw-checkbox-28 {
    0% {
      stroke-dashoffset: 33;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  .select2-container--bootstrap4 .select2-selection--single{
    height: calc(1.9em + .75rem + 2px) !important;
  }

  @keyframes colorDegradado {
    0% { color: #833ab4; }
    20% { color: #fd1d1d; }
    40% { color: rgb(35, 111, 224); }
    60% { color: #fcb045; }
    80% { color: rgb(240, 41, 6); }
    100% { color: #b1f5d3; }
  }
  
  .fa-robot {
    animation: colorDegradado 5s infinite linear;
  }