.form-tickets {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 10px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-bottom:  1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-card{
  height: calc(1em + 0.75rem + 5px);
  padding: 0.375rem 0.2rem;
  font-size: .6rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .form-tickets {
    transition: none;
  }
}

.form-tickets::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-tickets:focus {
  color: #495057;
  background-color: #fff;
  border-color: #235B4E;
  border-width: 2px;
  box-shadow: 0 4px 2px -2px gray;
}

.form-tickets::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-tickets::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-tickets:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-tickets::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-tickets::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-tickets:disabled, .form-tickets[readonly] {
  background-color: #fff;
  opacity: 1;
  border-color: #235B4E;
  border-width: 2px;
  box-shadow: 0 4px 2px -2px gray;
}

input[type="date"].form-tickets,
input[type="time"].form-tickets,
input[type="datetime-local"].form-tickets,
input[type="month"].form-tickets {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-tickets:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-tickets:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

select.form-tickets[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.select2-container--default .select2-selection--single {
  background-color: #fff !important;
  border: 0 !important;
  border-bottom: 1px solid #ced4da !important;
  border-radius: 0.25rem !important;
  height: calc(1.5em + 0.75rem + 10px) !important;
  padding: 0.375rem 0.75rem !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #495057 !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
  box-shadow: none !important;
}

/* Texto dentro del select */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #495057 !important;
  line-height: 1.5 !important;
  padding-left: 0 !important;
  margin-top: 7px !important;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #6c757d !important;
  opacity: 1 !important;
}

/* Flecha */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 10px !important;
  width: 20px !important;
}

/* Flecha SVG o pseudo-elemento */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #495057 transparent transparent transparent !important;
  border-style: solid !important;
  border-width: 5px 4px 0 4px !important;
  left: 50% !important;
  margin-left: -4px !important;
  margin-top: -2px !important;
  position: absolute !important;
  top: 50% !important;
}

/* Enfocado */
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #235B4E !important;
  border-width: 2px !important;
  box-shadow: 0 4px 2px -2px gray !important;
}

.select2-container--default .select2-selection--single.error {
  border-bottom: 1px solid red !important;
}