vc-spinner[theme="claro"] {
  position: relative !important;
  display: flex !important;
  /* LABEL */
  /* BOTTOM BAR*/
  /* active state */
}
vc-spinner[theme="claro"] .vc-spinner-group {
  display: flex !important;
  flex-direction: column;
  border-bottom: 1px solid #e6e6e6;
  flex-grow: 1;
}
vc-spinner[theme="claro"] .vc-spinner-spinner {
  display: flex;
  flex-direction: row;
  outline: none;
  background-color: #3a3a3a;
}
vc-spinner[theme="claro"] .vc-spinner-input {
  font-size: 15px;
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  color: #e6e6e6;
  border: none;
  background-color: transparent;
}
vc-spinner[theme="claro"] .vc-spinner-control {
  font-weight: bold;
  display: flex;
  width: 24px;
  padding: 5px;
  pointer-events: all !important;
  text-align: center;
  align-items: center;
  justify-content: center;
}
vc-spinner[theme="claro"][disable="false"] .vc-spinner-control:hover {
  cursor: pointer;
  color: #ffffff;
}
vc-spinner[theme="claro"] .vc-spinner-control i {
  font-size: 20px;
}
vc-spinner[theme="claro"] .vc-spinner-input:focus {
  outline: none;
}
vc-spinner[theme="claro"] .vc-spinner-label {
  font-size: 15px;
  margin-bottom: 5px;
  height: 18px;
  display: none;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
vc-spinner[theme="claro"] .vc-spinner-labelDisplay {
  display: flex;
}
vc-spinner[theme="claro"] .vc-spinner-focusLabel {
  color: #c718be;
}
vc-spinner[theme="claro"] .vc-spinner-disable {
  cursor: auto;
  pointer-events: none;
  color: #747474;
  border-bottom: 1px solid #747474;
}
vc-spinner[theme="claro"] .vc-spinner-disable .vc-spinner-input {
  color: #747474;
}
vc-spinner[theme="claro"] .vc-spinner-input[type=number]::-webkit-inner-spin-button,
vc-spinner[theme="claro"] .vc-spinner-input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
vc-spinner[theme="claro"] .vc-spinner-input[type=number] {
  -webkit--appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
vc-spinner[theme="claro"] .vc-spinner-inputBar {
  position: relative;
  display: block;
  width: auto;
}
vc-spinner[theme="claro"] .vc-spinner-inputBar:before,
vc-spinner[theme="claro"] .vc-spinner-inputBar:after {
  position: absolute;
  width: 0;
  height: 2px;
  content: "";
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  transition: 0.5s ease all;
  background: #c718be;
}
vc-spinner[theme="claro"] .vc-spinner-inputBar:before {
  left: 50%;
}
vc-spinner[theme="claro"] .vc-spinner-inputBar:after {
  right: 50%;
}
vc-spinner[theme="claro"] .vc-spinner-animate:before,
vc-spinner[theme="claro"] .vc-spinner-animate:after {
  width: 50%;
}
@media (max-width: 768px) {
  vc-spinner[theme="claro"] {
    width: auto !important;
  }
}
