.bqo-form {
    max-width: 600px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
}

.bqo-form .form-group {
    margin-bottom: 18px;
}

.bqo-form .form-group-inline {
  justify-content: space-evenly;
  display: flex;
}


.bqo-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.bqo-form input[type="text"],
.bqo-form input[type="email"],
.bqo-form input[type="number"],
.bqo-form input[type="date"],
.bqo-form input[type="file"],
.bqo-form select,
.bqo-form textarea {
    width: 100%;
    padding: 5px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Remove number input arrows */
.bqo-form input[type="number"]::-webkit-outer-spin-button,
.bqo-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*
.bqo-form input[type="number"] {
    -moz-appearance: textfield;
}*/

.bqo-form .radio-group label {
    margin-right: 16px;
    font-weight: 400;
}

.bqo-form textarea {
    min-height: 90px;
    resize: vertical;
}

.bqo-form .submit-btn {
    padding: 12px 24px;
    background-color: #007cba;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.bqo-form .submit-btn:hover {
    background-color: #005e92;
}

#bqo_photo_preview img {
    border-radius: 4px;
    margin-top: 5px;
}

#bqo-registration-form .select2-container--default .select2-selection--single,
#bqo-deposit-form .select2-container--default .select2-selection--single {
    width: 100%;
    padding: 5px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height: auto;
}

#bqo-registration-form .select2-container,
#bqo-deposit-form .select2-container {
    width: 100% !important;
}

#bqo-registration-form .select2-selection__rendered,
#bqo-deposit-form .select2-selection__rendered {
    line-height: normal;
}

#bqo-registration-form .select2-selection--single,
#bqo-deposit-form .select2-selection--single {
    height: auto;
    display: flex;
    align-items: center;
}


select[disabled] {
    background-color: #f0f0f1 !important;
    color: #333 !important;
    opacity: 1 !important;
    cursor: default !important;
}

#bqo-registration-form .select2-selection.select2-selection--single, 
#bqo-deposit-form .select2-selection.select2-selection--single {
    height: 42px !important;
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
  height:42px !important;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Label "Sí / No" */
.toggle-label {
  margin-left: 40px;
  font-weight: bold;
  color: #000;
  line-height: 24px;
  display: inline-block;
  position: absolute;
}

/* Dynamic label */
input + .slider + .toggle-label::after {
  content: "No";
}

input:checked + .slider + .toggle-label::after {
  content: "Sí";
}

@media (max-width: 480px) {
   #bqo-deposit-form .woocommerce-button {
       width: 100%;
       font-size:1.1em;
       line-height: 1.8em;

   }

}