@charset "UTF-8";
/* DEFAULT INPUT */
.form-group:not(.form-floating) .form-control:not(.unstyled) {
  border-radius: 40px !important;
  min-height: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 0 30px;
  border: 0;
}
.form-group:not(.form-floating) textarea.form-control:not(.unstyled) {
  padding: 20px 30px;
}
.form-group.append:not(.form-floating) {
  position: relative;
}
.form-group.prepend:not(.form-floating) {
  position: relative;
}
.form-group.prepend:not(.form-floating) .form-control {
  padding-left: 60px;
}
.form-group.append:not(.form-floating) .form-control {
  padding-right: 60px;
}
.form-group.append:not(.form-floating) .input-append {
  position: absolute;
  bottom: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #fff;
}
.form-group.prepend:not(.form-floating) .input-prepend {
  position: absolute;
  bottom: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #fff;
}
.form-group.append:not(.form-floating) .input-append {
  right: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
.form-group.prepend:not(.form-floating) .input-prepend {
  left: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.form-group:not(.form-floating) label {
  font-weight: 700;
  margin-bottom: 10px;
}
.form-group .input-tag-holder {
  border-radius: 40px !important;
  min-height: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 10px 30px;
  border: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 5px;
       column-gap: 5px;
  row-gap: 5px;
}
.form-group .input-tag-holder input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aeaeae;
  max-width: 100px;
  font-size: 12px;
}
.form-group .input-tag-holder input:active, .form-group .input-tag-holder input:focus {
  outline: none;
  box-shadow: none;
}
.form-group .input-tag-holder span {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  line-height: 1;
  /* margin-right: 5px;
  margin-bottom: 5px; */
  white-space: nowrap;
}
.form-group .input-tag-holder span a {
  color: #fff;
  padding-left: 10px;
}
.form-group .form-check {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  font-weight: 300;
  padding: 0;
}
.form-group .form-check .check {
  border: 2px solid var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: inline-flex;
  margin-right: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.form-group .form-check .check::before {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f00c";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #fff;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary);
}
.form-group .form-check .check.checked::before {
  -webkit-animation: checkOn 0.2s forwards;
          animation: checkOn 0.2s forwards;
}
.form-group .form-check .check.remove-checked::before {
  -webkit-animation: checkOff 0.2s forwards;
          animation: checkOff 0.2s forwards;
}

/* INPUT TAGS */
/* CHECKS */
@-webkit-keyframes checkOn {
  from {
    width: 0;
    height: 0;
  }
  to {
    width: 40px;
    height: 40px;
  }
}
@keyframes checkOn {
  from {
    width: 0;
    height: 0;
  }
  to {
    width: 40px;
    height: 40px;
  }
}
@-webkit-keyframes checkOff {
  from {
    width: 40px;
    height: 40px;
  }
  to {
    width: 0;
    height: 0;
  }
}
@keyframes checkOff {
  from {
    width: 40px;
    height: 40px;
  }
  to {
    width: 0;
    height: 0;
  }
}
/* SWITCH */
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* QUANTITY */
.form-quantity {
  display: flex;
  align-items: center;
}
.form-quantity button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  border: 0;
}
.form-quantity input {
  border: 0;
  text-align: center;
  width: 50px;
  color: var(--primary);
  font-weight: 400;
  margin: 0 10px;
}
.form-quantity input:focus, .form-quantity input:active, .form-quantity input:hover {
  border: 0;
  outline: none;
  box-shadow: none;
}

/*  FLOATING LABEL INPUT */
.form-group.form-floating {
  position: relative;
  margin-bottom: 30px;
  display: flex;
}
.form-group.form-floating .form-control {
  border-radius: 40px;
  min-height: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 0 30px;
  border: 0;
}
.form-group.form-floating.has-button .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.prev-text {
  background: transparent;
  font-weight: 900;
  color: var(--primary);
  border: 1px solid #ced4da;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.prev-text ~ .form-group.form-floating .form-control {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-group.form-floating.has-button .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 20px;
}
.form-group.form-floating label {
  position: absolute;
  left: 25px;
  top: 15px;
  text-align: left;
  font-weight: 300;
  transition: 0.1s ease-in-out;
  padding: 0 5px;
  pointer-events: none;
  color: var(--secondary);
}
.form-group.form-floating .form-control:active, .form-group.form-floating .form-control:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group.form-floating .form-control:not(:-moz-placeholder-shown) ~ label {
  top: -10px;
  left: 10px;
  font-size: 12px;
}
.form-group.form-floating .form-control:active ~ label, .form-group.form-floating .form-control:focus ~ label, .form-group.form-floating .form-control:not(:placeholder-shown) ~ label {
  top: -20px;
  left: 10px;
  font-size: 12px;
  background-color: transparent;
}
.form-group .select {
  text-align: left;
  position: relative;
}
.form-group .select input {
  position: relative;
  z-index: 10;
}
.form-group .select input.active {
  z-index: 99 !important;
}
.form-group .select .options {
  position: absolute;
  width: calc(100% - 0px);
  background: #fff;
  padding: 50px 25px 20px;
  transform: translateY(-30px);
  z-index: 9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.form-group .select .options.active {
  z-index: 90 !important;
}
.form-group .select .options .holder {
  display: flex;
  flex-direction: column;
  max-height: 150px;
  overflow: auto;
}
.form-group .select .options .holder span {
  padding: 5px 20px;
  color: var(--primary);
  position: relative;
}
.form-group .select .options .holder span:hover {
  background-color: #eee;
  cursor: pointer;
}
.form-group .select .options .holder span.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  right: 15px;
}
.form-group .select .input-group .ico {
  color: #3C0396;
  font-size: 17px;
  position: absolute;
  right: 30px;
  top: 18px;
  transition: 0.3s;
  z-index: 11;
}
.form-group .select .input-group .ico.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  z-index: 100;
}
.form-group.invalid {
  position: relative;
}
.form-group.invalid .form-control {
  border: 1px solid #BD1717;
}
.form-group.invalid::after {
  content: attr(data-invalid);
  position: absolute;
  top: 0;
  right: 0;
  height: 22px;
  padding: 0 15px;
  background-color: #BD1717;
  border-radius: 30px;
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-group.form-floating.invalid {
  margin-bottom: 50px;
}
.form-group.form-floating.invalid::after {
  top: unset;
  bottom: -30px;
}
.form-group .password-toggle {
  position: absolute;
  top: 70%;
  right: 30px;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #999;
}
.form-group.form-floating .password-toggle {
  top: 50%;
}
.form-group .password-toggle.active {
  color: #333;
}

/* SELECT */
/* INVALID INPUT */
/*ícone password*/
