::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ddd;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: red;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: red;
}

/* CHECKBOXES */
.containerchekbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.containerchekbox h4 {
	text-align: left;
}

/* Hide the browser's default checkbox */
.containerchekbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: #eb7c00 2px solid;
  background-color: #aeaea5;
  -webkit-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out;
}

/* On mouse-over, add a grey background color */
.containerchekbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containerchekbox input:checked ~ .checkmark {
  background-image: none;
  background-color:#eb7c00;
  border:#aeaea5 2px solid;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form-control::placeholder {
    color: #555 !important;
}   

/* Show the checkmark when checked */
.containerchekbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerchekbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

select {
  height: 60px !important;
}

/* Radio Buttons */
.control-group {
  text-align: left;
  margin-top: 20px;
}

.control {
  position: relative;
  padding-left: 30px;
  margin-left: 0%;
  display:block;
  cursor: pointer;
}

 
@media (max-width: 991px) {
    .control {
        display: block;
        margin-left: 0%;
    }
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  border: #eb7c00 3px solid;
  background: #aeaea5;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}

.control input:checked ~ .control__indicator {
  background: #eb7c00;
  border: #eb7c00 0px solid;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #eb7c00;
}

.control input:disabled ~ .control__indicator {
  background: #eb7c00;
  opacity: 0.6;
  pointer-events: none;
}

.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after {
  display: block;
}

.control--radio .control__indicator:after {
  left: 5px;
  top: 5px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  /* circulo blanco */
  background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
  background: #eb7c00;
}

button a span {
    color: black;
}

button a span:hover {
    color: white;
}

input,
select,
textarea {
    border: #eb7c00 2px solid !important;
}